Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CPP

hello world c++

#include <iostream> 

int main()
{
  std::cout << "Hello World!"; //you can add new line by adding "
" or {<< endl}
  return 0; //exit code 0
}
Source by www.tutorialspoint.com #
 
PREVIOUS NEXT
Tagged: #world
ADD COMMENT
Topic
Name
4+5 =