print text cpp code example
Example 1: how to print in c++
#include <iostream>
int main() {
std::cout << "Hello, World!"; // prints 'Hello, World!' to the output.
return 0;
}
Example 2: c++ print
cout << "hello world"
#include <iostream>
int main() {
std::cout << "Hello, World!"; // prints 'Hello, World!' to the output.
return 0;
}
cout << "hello world"