Warning: implode(): Invalid arguments passed in /www/wwwroot/jobquiz.info/mdiscuss.php on line 336 scanf() or atoi() function can be used to convert a string like "436" in to integer. ?->(Show Answer!)
1. scanf() or atoi() function can be used to convert a string like "436" in to integer.
Ask Your Doubts Here
Comments
By: guest on 01 Jun 2017 06.02 pm
scanf is a function that reads data with specified format from a given string stream source.
scanf("%d",&number); atoi() convert string to integer.
var number;
number = atoi("string");
scanf("%d",&number); atoi() convert string to integer.
var number;
number = atoi("string");