Advertisement
HristoBaychev

Declaration

Oct 1st, 2021
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.22 KB | None | 0 0
  1. #include <stdio.h>
  2. #include <stdio.h>
  3.  
  4. int addDigit(int a, int b);
  5.  
  6. int main()
  7. {
  8.     int res = addDigit(1,4);
  9.     printf("res = %d\n", res);
  10.     return 0;
  11. }
  12.  
  13. int addDigit(int a, int b){
  14.     return a + b;
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement