fork download
  1. int main(void) {
  2. int foo[] = {1, 2, 3};
  3. int *bar = foo;
  4. printf("%zu and %zu\n", sizeof foo, sizeof bar);
  5. return 0;
  6. }
  7.  
Success #stdin #stdout 0.01s 5460KB
stdin
Standard input is empty
stdout
12 and 8