选择题   下面程序的输出结果是______。
    #include<stdio.h>
    main()
    {int x=10,*p=&x;
    printf('%d,%d”,++x,++*p);
    }
 
【正确答案】 A
【答案解析】