fork(26) download
  1. static int add();
  2. int main(){
  3. printf("%d",add());
  4. return 0;
  5. }
  6.  
  7. static int add(){
  8. return 1+1;
  9. }
Success #stdin #stdout 0s 1832KB
stdin
Standard input is empty
stdout
2