Horje
print hello world on c++ Code Example
print hello world on c++
/*These are comments. They are used to assist the programmer.
They do not affect the program in any way.
Write whatever you want*/
#include <iostream> //preprocessor directive (use input/output)

using namespace std; //use standard definitions

//This is the "main" function. C++ will start executing code here
int main(){ //bracket signals the start of the main function
         cout << "Hello, world!" << endl; //display with a new line
         //main must return an integer. 0 means success, else fail
         return 0; 
} //end of the main function




Cpp

Related
default access modifier in c++ in struct Code Example default access modifier in c++ in struct Code Example
Sort array using inbuilt sort function in decreasing order Code Example Sort array using inbuilt sort function in decreasing order Code Example
pyramid shape in c++ Code Example pyramid shape in c++ Code Example
c++ main environment variables Code Example c++ main environment variables Code Example
summary a long walk to water Code Example summary a long walk to water Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
10