fork download
  1. #include<stdio.h>
  2.  
  3. void test()
  4. {
  5. int test = 3;
  6. return (void)test;
  7. }
  8.  
  9. int main()
  10. {
  11. test();
  12. printf("test");
  13. return 0;
  14. }
Success #stdin #stdout 0.01s 1676KB
stdin
Standard input is empty
stdout
test