predict the output of the following statements if a = 10
,b = 20,c = 3
a)cout<<a%c;
b)cout<<a/b;
c)cout<<b>c;
d)(a>b)ll(b>c)
Please
Answers
Answered by
1
a) a%c = 1
b) a/b = 0.5
c) b>c = true
d) (a>b)ll(b>c) = true
Similar questions