Which function accepts a string as its argument and returns
Which function accepts a string as its argument and returns True if the string contains only numeric digits?
Solution
Answer:
The function:
int atoi(const char *str) ;
atoi is a function that converts a string into into integer numeric representation . As you can see it takes string of characters and will return true for numeric values
