fork download
  1. #include<stdio.h>
  2.  
  3. void test_it(var)
  4. {
  5. printf("%d\n",var);
  6. }
  7.  
  8. int main()
  9. {
  10. test_it(67);
  11. return 0;
  12. }
Success #stdin #stdout 0s 2248KB
stdin
Standard input is empty
stdout
67