fork download
  1. #include <stdio.h>
  2.  
  3. int Add(int ttt, int ddd)
  4. {
  5. return ttt+ddd;
  6. }
  7.  
  8. int main(void)
  9. {
  10. int a,b;
  11. a=3;
  12. b=4;
  13.  
  14. printf("3+4=%d\n",Add(a,b));
  15. printf("5+6=%d\n",Add(5,6));
  16. }
Success #stdin #stdout 0s 9424KB
stdin
Standard input is empty
stdout
3+4=7
5+6=11