Sunday, September 19, 2010

007 hello world - perpect code

#include // include the standard input/output header file
int main() // our program starts here
{
printf("Hello World!"); // print "Hello World!" into the console
return 0;
}

1 comment:

  1. tip 001

    how to build solution in the VS 2005

    CTRL + Shift + B

    Excuting

    CTL+ Ff5

    ReplyDelete