ch1='A',没加单引号,程序识别不出来是字符,会报错
#include <stdio.h> #include <math.h> void main() { char ch1='A'; printf("%c",ch1+32); }
ch1 = 'A';