How to write a hello world program in C language? To learn a programming language, you must start writing programs in it, and this could be your first C program. Let's have a look at the program first.
#include <stdio.h> int main() { printf("Hello world\n"); return 0; }
output:
Hello world
total answers (1)
start bookmarking useful questions and collections and save it into your own study-lists, login now to start creating your own collections.
output:
Hello world
need an explanation for this answer? contact us directly to get an explanation for this answer