Current location - Plastic Surgery and Aesthetics Network - Plastic surgery and beauty - void main() { int m=0256,n = 256printf("%o%o\n ",m,n); } The output result after the program runs is _, _.
void main() { int m=0256,n = 256printf("%o%o\n ",m,n); } The output result after the program runs is _, _.
Answer: 256,400

int? m=0256? ,n = 256

/*

%o means output in octal format.

Because m=0256, the prefix is 0, which means octal number, so the output value of m is 256.

N=256, representing a decimal integer. The output should be in octal format, so it is 400, which means 4 * 8 2 = 256.

*/