ATOI Usage | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

ATOI Usage

#include <stdio.h> int main() { char input[10]; int num; printf("Enter a number: "); gets(input); num = atoi(input); return 0; } When i write that program,compiler says that "atoi is not function".But in C course it shows excatly like i wrote... And one more thing i want to ask,What does atoi exactly do?

14th Mar 2020, 5:02 PM
Mustafa
Mustafa - avatar
1 Answer
+ 2
I'm very grateful about your answer.Thank you so much!
14th Mar 2020, 5:22 PM
Mustafa
Mustafa - avatar