填空题

下列程序的运行结果是______。
#include<stdio.h>
main()
int a=10,b=3;
printf("%d,",a%b);
printf("%d,",(a-b,a+b));
printf("%d\n",a-ba-b:a+b);

【参考答案】

A,AC,G