Tuesday, December 14, 2010

C++ First Step

You need to understand the most basic thing about C++ which it is a high-level languages which interprets human simplified languages to low level languages such as binary code.

A simple coding

//#include // input-output stream library call
//#include // control input-output library call
//int main ( ) // main funtion 
//{
//  cout<<"Hello World!"<

//  
//  getch ( ); // to stop console from closing automatically
//  return 0; // to return value
//}

Output

Hello World!

that's all for today.

No comments:

Post a Comment