fork download
  1. #include <stdio.h>
  2. int main(int argc, char** argv) {
  3. static char T = 'a';
  4. struct T { char X[2]; };
  5. printf("size of T is %zu\n", sizeof(T));
  6. }
Success #stdin #stdout 0.01s 2680KB
stdin
Standard input is empty
stdout
size of T is 1