0
From an alphanumeric string, how can we separate numbers and alphabets and print them individually?
Use C++
2 Respuestas
+ 3
Hint: Use a loop and check isdigit(char), and separate them.
0
This will help you .
https://stackoverflow.com/questions/26502432/how-can-i-separate-numbers-and-letters-in-a-c-string
You can see code how to seprate numbers and chars