fork(1) download
  1. #include <stdio.h>
  2. #include <stdbool.h>
  3.  
  4. typedef struct CommiCoq {
  5. bool butthurt;
  6. } CommiCoq;
  7.  
  8. int main() {
  9. struct CommiCoq * coq = &(struct CommiCoq) { .butthurt = true };
  10. printf("Is commi coq has butthurt? %s\n", coq->butthurt ? "yes" : "yes");
  11. return 0;
  12. }
  13.  
Success #stdin #stdout 0s 2292KB
stdin
Standard input is empty
stdout
Is commi coq has butthurt? yes