How to enter characters in the program? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

How to enter characters in the program?

I was trying to enter some characters and looks like it does not work. so if someone can help me:) #include <iostream> using namespace std; char name; int age; int main ( ) { cout << "Please enter your name" << endl; cin >> name; cout << "Please enter your age" << endl; cin >> age; cout << "Your name is " << name << " and your age is " << age << endl; return 0; } it tells me that the name is 0 and age doesn't ask me and just enters a 0 what am I doing wrong??

4th Sep 2016, 12:00 AM
Daniel Rojas
Daniel Rojas - avatar
1 Answer
+ 2
u assigned name variable to chatacter which is only one letter in order to enter ur whole name specify name as string ex: string name; thts it!!
4th Sep 2016, 6:09 AM
Suhail Pappu
Suhail Pappu - avatar