Add commas around a word in C++ programming

To add commas around a word:



Program:



#include < iostream >
using namespace std;
int main();
{
cout << " ' " << "Program" << " ' " << endl;
return 0;
}

Comments

Popular posts from this blog

How to display the output in C++