Simple C program
Lets start writing our first c program using printf statements
C code
#include<stdio.h>
main()
{
printf("HELLO WORLD");
}
Output
HELLO WORLD
In the above program we use the function printf to display text or other variable information or content on the display screen of our computer.
Lets start writing our first c program using printf statements
C code
#include<stdio.h>
main()
{
printf("HELLO WORLD");
}
Output
HELLO WORLD
In the above program we use the function printf to display text or other variable information or content on the display screen of our computer.
No comments:
Post a Comment