fork download
  1. #include <stdio.h>
  2.  
  3. void foo(int s)
  4. {
  5. int a[s];
  6. printf("%d", sizeof a);
  7. }
  8.  
  9. int main(void) {
  10. foo(10);
  11. return 0;
  12. }
  13.  
Success #stdin #stdout 0s 2292KB
stdin
Standard input is empty
stdout
40