Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CPP

hello world c++

// C++ program to display "Hello World"
  
// Header file for input output functions
#include <iostream>
using namespace std;
  
// Main() function: where the execution of program begins
int main()
{
    // prints hello world
    cout << "Hello World";
  
    return 0;
}
Source by www.facebook.com #
 
PREVIOUS NEXT
Tagged: #world
ADD COMMENT
Topic
Name
6+3 =