Question: #include #include int main () { int p,q; p=7; q=(++p*++p)/3; printf( p = %d,p); printf( q = %d,q); return(0); } ****why the output for q

#include #include

int main () {

int p,q; p=7; q=(++p*++p)/3; printf(" p = %d",p); printf(" q = %d",q); return(0); } ****why the output for q is 27, not 24?? another coding

main() {

int i=5,j;

j=(++i)+(++i)+(++i); printf("i=%d, j= %d", i,j); return (0); }

****why the output for j is 22, not 21??

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!