#include /* * comments. This program prints hello world */ int main() { if ( printf("hello, world\n") < 0 ) // the main action here return 1; else return 0; // 0 => success }