#include <stdio.h> int difference(int one, int two); int main() { int a, b; scanf("%d %d", &a, &b); printf("%d\n", difference(a, b)); return 0; } int difference(int one, int two) { return one - two; }
Need a fast expert's response?
and get a quick answer at the best price
for any assignment or question with DETAILED EXPLANATIONS!