What will be the result of m in the expression m*=8 if m=8; ?
40 Likes
64
Reason — m*=8 is equivalent to m=m*8 ⇒ m = 8 * 8 = 64.
Answered By
12 Likes
What will be the output of a++, if int a= -1;?
If int a=25, b=5, c=0; what value is stored in c when c = a%b?
double c;int x,y,z;x=5; y=10; z=11;c=x*y+z/2;The value stored in c is:
int m,p; m=5; p=0; p= m-- + --m; The output will be: