I want to prevent my program from any other types of input instead of int. How to check the type of an input without assigning it to a variable? in C
|
1
|
|||
|
|
|
See strtod, strtol and friends. All of those function take an out parameter (generally referred to as The strategy is to try to parse the input as a base 10 long. If that does not work (i.e. if there were unconverted characters), see if parsing it as a double works. If neither works, the input is not a number. Clearly, you would have to decide what basic type you would want to use for numbers. You can build in more checks and refinements, but here is a simple example.
|
|||
|
|
|
|
you should put it into a char variable (or a string) check it's validity, and then put it to the int var. you have to read the data to somewhere. |
||
|
|
|
|
Without assigning the input to a variable you cannot possibly do this. |
||
|
|
