Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CPP

how to write hello world in c++

#include <iostream>
//optional using namespace std;
int main() {
    std::cout << "Hello, World!" << std::endl;
    return 0;
}
Source by en.wikibooks.org #
 
PREVIOUS NEXT
Tagged: #write #world
ADD COMMENT
Topic
Name
5+5 =