look for atoi() function... it will return zero if it is not able to convert the string passed into number.. though if you have an alphanumeric inputs (like 1234go4expert)..u should go for strtol().. both the functions even convert the input passed into their respective numbers(if possible).
completely agree.. there is another kind of case ..when input is "1234forum" atoi() will return 1234..!! and in case of strtol() using the third argument we can check if the function traversed the whole input or not..