fork download
  1. #include <iostream>
  2.  
  3. void stupidC(int blah[16])
  4. {
  5. std::cout<<sizeof blah<<std::endl;
  6. }
  7.  
  8. int main()
  9. {
  10. stupidC(NULL);
  11. }
Success #stdin #stdout 0.01s 2680KB
stdin
Standard input is empty
stdout
4