fork(11) download
  1. #include <stdio.h>
  2. int main (int ac, char **av) {
  3. struct A {
  4. int i;
  5. int a[ac];
  6. int j;
  7. };
  8.  
  9. printf("%d\n", sizeof (struct A));
  10.  
  11. return 0;
  12. }
  13.  
Success #stdin #stdout 0.01s 1720KB
stdin
Standard input is empty
stdout
12