Diferencia entre revisiones de «atoi()»
De ArduWiki
(→Referencias) |
(→Vea también) |
||
Línea 31: | Línea 31: | ||
== Vea también == | == Vea también == | ||
+ | <categorytree mode=all>Funciones conversion</categorytree> | ||
* [[string]] | * [[string]] | ||
− | |||
* [[strtoul()]] | * [[strtoul()]] | ||
− | |||
== Referencias == | == Referencias == |
Revisión del 22:51 24 jun 2019
Contenido
Descripción
Sintaxis
atoi(matriz);
Parametros
- matriz
- nombre de la matriz tipo char
Retorno
Numero tipo int.
Advertencias
Nada.
Ejemplo
void setup(){
Serial.begin(115200);
char texto[] = "-12345";
int x = atoi(texto);
x += 12300;
Serial.println(x); //-45
}
void loop(){
//Nada
}