#boolstd
Ordenar por:
Categoría:
B
Booleanos en lenguaje C
//bool.c #include <stdbool.h> #include <stdio.h> #include <string.h> char* bool_to_str ( _Bool ) ; _Bool str_to_bool ( const char* ) ; int main(){ ///variables _Bool b0,b1 ; b0 = true ; b1 = false ; /** * Cuerpo **/ printf ( " A N D n " ) ; printf( "%d & %d …
1
1