填空题

以下程序运行后的输出结果是
main()
int a, b, c;
a=25;
b=025;
c=0x25;
printf("% d % d % d\\n", a, b, c);

【参考答案】

25 21 37