Current location - Plastic Surgery and Aesthetics Network - Plastic surgery and beauty - C language, please enlighten me. Let a, b and c be integers, a=2, b=3 and c=4, and the optional column a*= 16+(b++
C language, please enlighten me. Let a, b and c be integers, a=2, b=3 and c=4, and the optional column a*= 16+(b++
# include & ltstdio.h & gt?

Invalid? Master ()

{

int? a=2,b=3,c = 4;

a* = 16+(b++)-(++c); ?

/* reduced to:

c = c+ 1;

a = a *( 16+b-c);

c = c+ 1;

*/

printf("%d\n ",a); ? //The result is a=28.

}