Computer Language

in #c7 years ago

Let us look at a simple code that would print the words Hello World.

#include
using namespace std;

// main() is where program execution begins.

int main() {
cout << "Hello World"; // prints Hello World
return 0;
}
Let us look various parts of the above program:

The C++ language defines several headers, which contain information that is either necessary or useful to your program. For this program, the header is needed.

The line using namespace std; tells the compiler to use the std namespace. Namespaces are a relatively recent addition to C++.

The next line // main() is where program execution begins. is a single-line comment available in C++. Single-line comments begin with // and stop at the end of the line.

The line int main() is the main function where program execution begins.
image
The next line cout << "This is my first C++ program."; causes the message "This is my first C++ program" to be displayed on the screen.

The next line return 0; terminates main( )function and causes it to return the value 0 to the calling process.

Sort:  

Hey that's an interesting post. I'll follow your account to see how you doing :). Please follow me @barteksiama.

Coin Marketplace

STEEM 0.17
TRX 0.13
JST 0.027
BTC 58664.80
ETH 2569.75
USDT 1.00
SBD 2.42