Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CPP

c++ print text

#include <iostream> // libary, where object cout is defined

using namespace std; // in order to reduce writing std::

int main() { // entry point

    cout << "Hello World"; // print

    return 0; // success exit
}
Source by studyfied.com #
 
PREVIOUS NEXT
Tagged: #print #text
ADD COMMENT
Topic
Name
8+4 =