This is the first project which you will learn to print something on the screen in C program.
int
main() {
printf (" Hello, World!");
return 0;
}
Hello, World!