Hello World program in C Language
Following is a Hello World program in C Language which prints the words 'Hello World!'
#include <stdio.h>
int main() {
printf("Hello World!");
}
main() is a special function in C Language, this tells compiler where to start.
printf function used to print outputs.