홍용민

echo program

Showing 1 changed file with 13 additions and 0 deletions
#include<iostream>
using namespace std;
int main() {
char c;
cout << "Enter a character -> ";
cin >> c;
cout << "you enter \"" << c << "\"" << endl;
return 0;
}
\ No newline at end of file