print out in c++ code example
Example 1: how to print in c++
#include <iostream>
int main() {
std::cout << "Hello, World!";
return 0;
}
Example 2: how to print in c++
#include <iostream>
using namespace std;
int main(){
cout<<"Hello World!"<< endl;
return 0;
}
Example 3: how to print in c++
#include <iostream>
int main() {
std::cout << "Hello World!";
return 0;
}
Example 4: c++ input from terminal when program is called
#include <iostream>
#include <string>
int main( int argc, char* argv[] )
{
std::string my_arg;
std::cout << argv[0] << std::endl;
if( argc == 2 )
{
my_arg = argv[1];
std::cout << "Argument passed in is " << my_arg << std::endl;
}
return 0;
}