Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CPP

how to print a text in c++

//typing using namespace std; before the int main will make things easier so that you 
//won't need to type std:: every time you code something.
// For example:

using namespace std;

int main()
{
	cout << "Hello World!";

}
 
PREVIOUS NEXT
Tagged: #print #text
ADD COMMENT
Topic
Name
3+9 =