可以运行出来啊,输出结果是:
G,l,m,r,e
是不是程序没有写完整,完整程序如下:
#include
int main()
{
char c1,c2,c3,c4,c5;
c1='C';c2='h';c3='i';c4='n';c5='a';
c1+=4;c2+=4;c3+=4;c4+=4;c5+=4;
printf("%c,%c,%c,%c,%c",c1,c2,c3,c4,c5);
return 0;
}
是不是没有包含头文件?
在最前面加一行:
#include "stdio.h"
试试。
main()最好也改成void main()
希望有用。
没有错误 可以运行出来 加上头文件#include
运行结果为 G,m,l,r,e
#include"stdio.h"
main()
{char c1,c2,c3,c4,c5;
c1='C';c2='h';c3='i';c4='n';c5='a';
c1+=4;c2+=4;c3+=4;c4+=4;c5+=4;
printf("%c,%c,%c,%c,%c",c1,c2,c3,c4,c5);
}运行出来的结果是G,l,m,r,ePress any key to continue