fork download
  1. #include <stdio.h>
  2.  
  3. int add(int a, int b){
  4. return a+b;
  5. }
  6.  
  7. int main(void) {
  8. int x;
  9. x = add(2,3);
  10. printf("x=%d",x);
  11. return 0;
  12. }
  13.  
Success #stdin #stdout 0.01s 5324KB
stdin
Standard input is empty
stdout
x=5