©️BOOLEANOS
Variables Booleanas
#include <stdbool.h>bool isProgrammin = true;
bool isFusg = false;#include <stdio.h>
#include <stdbool.h>
int main() {
bool var1 = true;
bool var2 = false;
printf("%d", var1);
printf("%d", var2);
return 0;
}Última actualización