程序运行后的输出结果是
#include 
int main()

    int a=666,b=888;
    printf("%d\n",a,b);
    return 0;
}
A、666
B、888
C、错误信息
D、666,888