Добавлен тип bool

This commit is contained in:
Alexander Popov 2023-09-19 02:28:04 +03:00
parent d6103313ae
commit b880a2ba78
Signed by: iiiypuk
GPG Key ID: E47FE0AB36CD5ED6
1 changed files with 6 additions and 0 deletions

View File

@ -15,6 +15,7 @@ void setup() {
double example_double;
char example_char;
char * example_string;
bool example_bool;
size_variable = sizeof(example_int);
Serial.print("int bytes size: " );
@ -47,6 +48,10 @@ void setup() {
size_variable = sizeof(example_string);
Serial.print("char * bytes size: " );
Serial.println(size_variable);
size_variable = sizeof(example_bool);
Serial.print("bool bytes size: " );
Serial.println(size_variable);
}
void loop() {
@ -64,4 +69,5 @@ void loop() {
* double bytes size: 4
* char bytes size: 1
* char * bytes size: 2
* bool bytes size: 1
*/