#include
main()
{
printf("Hi this is my first program");
}
This is a simple program which displays the text in the printf() fuction on the display screen.The first line consists of:-
#include
Where the #include is the preprocessor directive which is used to include a particular header file.Next to it is the
The above statement includes the header file
On the next line is the main() which is used in every program.Next line includes a printf() statement which is used to display output.It is a standard library function.