Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CPP

c++

// 							BASIC C++ HELLO WORLD

// This is to include the needed library for basic programming in c++
#include <iostream>

// Getting rid of the need to use std::
using namespace std;

// Main Function
int main() {

	// Cout is like print, << is used for sending the text to the cout.
  	// 
 is for new line.
  cout << "Hello World
";
  
}
Source by openclassrooms.com #
 
PREVIOUS NEXT
Tagged:
ADD COMMENT
Topic
Name
2+2 =