Revisamos completamente cada noticias en nuestra web con el objetivo de enseñarte en todo momento información veraz y certera.
Ejemplo 1: atoi
#include //atoi's library#include intmain(void)
string input ="9";int output =atoi(input);printf("%i", output);//this will print out 9 as an int not a string
Ejemplo 2: atoi c
#include #include #include //CONVERT STRING TO INTintmain()int val;char str[20];strcpy(str,"98993489");
val =atoi(str);printf("String value = %s, Int value = %dn", str, val);strcpy(str,"tutorialspoint.com");
val =atoi(str);printf("String value = %s, Int value = %dn", str, val);return(0);
Ejemplo 3: qué es atoi en stringf
The C library function intatoi(constchar*str) converts the
string argument str to an integer(type int).
Note: It is used in case of string because in strings a number is
also stored as charand we have to do Typecasting form(string ->int)
Puntuaciones y comentarios
Recuerda que tienes permiso de comentar si te fue de ayuda.
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)