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");
}
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.
No comments:
Post a Comment