Computer Science, asked by Dheeraj1924, 5 months ago

If p=10, then the output of the expression c= p++ *5 is

Answers

Answered by siamlo
1

Answer:

Output will be:

c = 50 (since p has a postfix operator, the value will be incremented after the operation is applied)

p = 11 (value of p is incremented, i.e, 10+1 = 11)

Hope this helps! Please mark this the brainliest answer if you found it helpful! :)

Similar questions