Here's a basic question:
How can I take the input from a user and only accept numbers? I know I need to use this start:
do{
ch=getchar();
}while (ch != '\n');
But I know it's not enough. This will block every input, including numbers, so I need to break when input is number. also how do I break not after the first digit of the number?
I tried looking this up with no luck.
thanks!
simple, nice and neat solution:), I used to solve similar questions when I started programming, this will let you only input numbers