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
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??
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
