int a=8, b=5; [2]
int c=a+ a/b;
int d=b*a%b;
What will be the output of c and d ?
Answers
Answered by
3
c = 9.6
d = 0
Similar questions