/* --------------------------------------------------------- This is a comment compile with: gcc -E comment.c Notice that the comment text will be REMOVED !!! -------------------------------------------------------- */ // This is also a comment This is a NOT comment (will generate syntax error !) int main( int argc, char* argv[] ) { printf( "Hello World !\n" ); }