How should I get character and integer together as input in c++? | Sololearn: Learn to code for FREE!
Nouvelle formation ! Tous les codeurs devraient apprendre l'IA générative !
Essayez une leçon gratuite
+ 1

How should I get character and integer together as input in c++?

Suppose user gives input "abc1234" ....then how to take this as input and display it.

31st Jul 2018, 3:40 PM
Ayan Biswas
Ayan Biswas - avatar
2 Réponses
+ 3
Use strings
31st Jul 2018, 3:59 PM
ReimarPB
ReimarPB - avatar
+ 2
Use a string... string input; cin >> input; cout << input;
31st Jul 2018, 3:48 PM
TurtleShell
TurtleShell - avatar