“Bool -Druckvariable in C.” Code-Antworten

Druck bool c

// there is no way of pretty-print a boolean with printf
printf("%i", true);  // will print 1
printf("%i", false); // will print 0

// but we can create a macro
#define formatBool(b) ((b) ? "true" : "false")
printf("%s", formatBool(true));  // will print true
printf("%s", formatBool(false)); // will print false
Thoughtful Trout

Bool -Druckvariable in C.

#include <stdio.h>
#include <stdbool.h>
int main(){
  int o = true;
  printf("%i", o);
  /*
  Output
  1
  1 means true
  */
  int q = false;
  printf("%i", q);
  /*
  Output
  0
  0 means false
  */
}
Yucky Yak

Ähnliche Antworten wie “Bool -Druckvariable in C.”

Fragen ähnlich wie “Bool -Druckvariable in C.”

Weitere verwandte Antworten zu “Bool -Druckvariable in C.” auf C

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen