Answers for "how to print a string to console in c++"

C++
4

how to print a string to console in c++

// Just some basic format 

#include <iostream>
#include <string>
using namespace std;

int main()
{
 cout << "Print a String" << endl; 
}
Posted by: Guest on January-07-2020

Code answers related to "how to print a string to console in c++"

Browse Popular Code Answers by Language