标签: c caesar-cipher mod
我正在尝试使用以下内容修改c中的字符:
int shift = 1; c = (c + shift ) % 26; printf("c= %c \n",c);
变量c是a-z之间的小写英文字符。当我尝试使用上面的代码打印出char时,我得到以下内容:
c=
有人可以告诉我我做错了吗?