(a) m
(b) n = m + m/n;
ICSE 2005
[ICSE-2007)
a =
ICSE-2006)
7. If m=5 and n=2 then what will be the values of m and n after execution of the
following statements?
= n;
8. State the difference between = and ==
9. What will be the
Attachments:
Answers
Answered by
3
Answer:
7.
a) m-=n will produce m= 3 as m= m - n
b) n=m+m/n will produce n= 6
8.
= is assignment operator
== is relational operator
Explanation:
Similar questions