下面程序的输出结果是( )。#include <stdio.h> main() { int x='f';
printf("%c\n",'A'+(x-'a'+1));}
a、G
b、H
c、I
d、J
您好!很高兴为您解答。
输出结果为a、G:
#include <stdio.h>
main()
{
int x='f';
printf("%c\n",'A'+(x-'a'+1));//相当于ascⅡ码的加减:65+(102-97+1)=71所以输出ascⅡ为71的G
}
望采纳~如您还有不解,欢迎追问~