Diferencia entre revisiones de «sizeof()»
De ArduWiki
(→Ejemplo) |
|||
Línea 29: | Línea 29: | ||
delay(5000); | delay(5000); | ||
} | } | ||
− | <syntaxhighlight> | + | </syntaxhighlight> |
== Vea tambien == | == Vea tambien == |
Revisión del 18:08 26 jun 2018
Contenido
Descripción
Devuelve el número de bytes de una variable o el número de bytes ocupados por una matriz. Acepta cualquier tipo: byte, int, float.
Sintexis
sizeof(variable);
Parámetros
- variable
- nombre de variable a evaluar.
Retorna
Advertencias
Nada.
Ejemplo
char matriz[]="Esto es una matriz";
void setup(){
Serial.begin(9600);
}
void loop(){
if (int n=0; n<sizeof(matriz)-1; i++{
Serial.print(i);
Serial.print(" = ");
Serial.println(matriz[i]);
}
delay(5000);
}