What will be the output of the following if x=5?
i. 5 * ++xii. 5 * x++
98 Likes
i. 5 * ++x⇒ 5 * 6⇒ 30
ii. 5 * x++⇒ 5 * 5⇒ 25
Answered By
55 Likes
If m=5, n=2; what will be the output of m and n after execution?
i. m -= n ii. n = m + m/n
What do you understand by type conversion?
If x = 3, y = 7, calculate the value of:
x -= x++ - ++y
What is type conversion? How is an implicit type conversion different from explicit type conversion?