fork(2) download
  1. #include <stdio.h>
  2.  
  3. inline int add(int a , int b){
  4. return a+b;
  5. }
  6.  
  7. int main(){
  8. printf("%d\n", add(1,2));
  9. return 0;
  10. }
Success #stdin #stdout 0s 4368KB
stdin
Standard input is empty
stdout
3