csansoon

P4.04 X51086 Function for the difference of two integers

Oct 24th, 2018
106
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.11 KB | None | 0 0
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int dif(int x, int y) {
  5.     x=x-y;
  6.     return x;
  7. }
  8.  
  9. int main(){}
Advertisement
Add Comment
Please, Sign In to add comment