PRINT HELLO WORLD
PRINT HELLO WORLD:
In this program ,we use print statement to print "HELLO WORLD!" . The output statement can be printed in the following method.
CODE:
In this program ,we use print statement to print "HELLO WORLD!" . The output statement can be printed in the following method.
CODE:
#include<stdio.h>
#include <stdlib.h>
int main()
{
printf("HELLO WORLD!");// type the statement you want to print inside the " ".
}
#include <stdlib.h>
int main()
{
printf("HELLO WORLD!");// type the statement you want to print inside the " ".
}
Your Program Output:
HELLO WORLD!
Comments
Post a Comment