下面这个程序,给定一个大写字母,它可以在vc++6.0输出一个相应的小写字母,但是在vc2013上却不行。
#include <stdio.h>int main()
{
char c1, c2;
printf("Please enter a capital letter:c1=");
scanf_s("%c", &c1);
c2 = c1 + 32;
printf("c2=%c\n",c2);
return 0;
}
[此贴子已经被作者于2017-3-30 22:53编辑过]