Advertisements
Advertisements
प्रश्न
Evaluate the following C++ expressions where x, y, z are integers and m, n are floating-point numbers. The value of x = 5, y = 4 and m = 2.5;
z *= x * m + x;
थोडक्यात उत्तर
उत्तर
z = (x++) * m + x;
= 5*2.5 + x
= 12.5 + 5
= 18 (z is int type, therefore the fractional part is removed, X++ is incremented after the addition)
shaalaa.com
या प्रश्नात किंवा उत्तरात काही त्रुटी आहे का?
पाठ 9: Introduction to C++ - Data Types, Variables and Expressions - Evaluation - Section - C [पृष्ठ १५१]