Friday 1 April 2011

GETTING STARTED WITH C/C++

LESSON 1:
HOW TO WRITE A HELLO WORLD PROGRAM IN C:
VOID MAIN()
{
       printf("HELLO WORLD");  //printf is use to print the statement within the "" write what you want to print
}