fork(1) download
  1. #include <stdio.h>
  2.  
  3. typedef _Bool bool;
  4.  
  5. int main() {
  6. bool a = 0;
  7. printf("%d\n", sizeof(a)); // 1
  8. (*(char*)&a) = 'a';
  9. printf("%d\n", a); // говно, wtf?
  10. }
Success #stdin #stdout 0s 2160KB
stdin
Standard input is empty
stdout
1
1