Biology Forums - Study Force

Science-Related Homework Help Computer Studies Topic started by: pagnor on Sep 3, 2017



Title: In the following C++ statement, what will be executed first according to the order of ...
Post by: pagnor on Sep 3, 2017
In the following C++ statement, what will be executed first according to the order of precedence?

   result = 6 - 3 * 2 + 7 - 10 / 2 ;

A) 10 / 2
B) 3 * 2
C) 2 + 7
D) 7 - 10
E) 6 - 3


Title: Re: In the following C++ statement, what will be executed first according to the order of ...
Post by: ade9ja on Sep 3, 2017
Content hidden