" How to write hello world in C programming language"
To print hello world in c, We need to include input and output extension by using
#include<stdio.h>
Source code --
#include<stdio.h>
int main(){
printf("Hello world");
return 0;
}
Int main() is the main function
"Return 0" if program runs successfully
And printf("Here goes your text); is print function in c.
Comments
Post a Comment