int a=8, b=3, c=-5;
float e;
e=a*b/c;
count<<e;
find output?
Answers
Answered by
2
Answer:
output:-
4.8
I think it is cout with insertion operator instead of count.
Similar questions