Suppose your name was George Gershwin. Write a complete program that would print your last name, followed by a comma, followed by your first name. Do not print anything else (that includes blanks).

.
.
Click on the title for the solution
.
.

This is the answer:

:


#include <iostream>
using namespace std;
int main()

{cout<<"Gershwin,George";}

Comments