选择题   数字字符0的ASCII值为48,运行下列程序的输出结果是______。
    main()
    {char a='1',b='2';
    printf('%c,',b++);
    printf('%d\n',b-a);}
 
【正确答案】 C
【答案解析】