In this program, You will learn How to use the comma operator in place of the semi-colon in C++.
Use Comma Operator
cout << "Welcome in C++ World",
cout << "\nWelcome Back Again";
#include<iostream>
using namespace std;
int main() {
cout << "Welcome in C++ World",
cout << "\nWelcome Back Again";
return 0;
}
Welcome in C++ World
Welcome Back Again