How to start C programming, what about just printing out a simple statement like hello world.
1
2
3
4
5
6
7
#include<stdio.h> /* standard C library */intmain(){printf("Hello World\n");/* Prints statement then prints empty line afterwards */return0;/* returns with 0 */}