Answers for "c++ print text"

C++
0

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
}
Posted by: Guest on March-10-2022

Browse Popular Code Answers by Language