Tuesday, 3 September 2013

First Program

c and c++ tutorials // online learning spot
To start with we will do some input - output work.....
So to just print any thing on screen in C, here is the program :

#include<stdio.h>
main()
{

  printf("Hi this is my First C program");
}

  • Run this program
  • To see output go to menu bar : Window --> User Screen

  • Output will be on black screen.





<<Back        Next>>


No comments:

Post a Comment