fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. int a = 1;
  5. char b;
  6. double c;
  7.  
  8. size_t s = sizeof (a ? b : c);
  9. printf("%zu\n", s);
  10.  
  11. return 0;
  12. }
  13.  
Success #stdin #stdout 0s 5292KB
stdin
Standard input is empty
stdout
8