fork download
  1. void foo(const int i_am_const_damnit);
  2.  
  3. int main(void)
  4. {
  5. foo(10);
  6. }
  7.  
  8. void foo(int are_you_sure) {
  9. ++are_you_sure; // changes the value of 10?
  10. }
Success #stdin #stdout 0s 2244KB
stdin
Standard input is empty
stdout
Standard output is empty