#include<stdio.h>
void main()
{
int x=3,y;
y=++x * ++x * ++x;
printf("y=%d",y);
}
output:-
216
++x will make the value of x =4 then 5 and then 6
after it
y=6 * 6 *6
y-=216
void main()
{
int x=3,y;
y=++x * ++x * ++x;
printf("y=%d",y);
}
output:-
216
++x will make the value of x =4 then 5 and then 6
after it
y=6 * 6 *6
y-=216
For any doubts ,post your comments here