开发平台(Platform): (Ex: VC++, GCC, Linux, ...)
Visual Studio 2013
win7 64bit
问题(Question):
为两题洪维恩的C语言教学手册范例 prog4_13和prog4_15
喂入的资料(Input):
Q1:输入R字符
Q2:输入字串Alice
预期的正确结果(Expected Output):
Q1:ch=R, ASCII code is 82
Q2:Hi, Alice, How are you?
错误结果(Wrong Output):
Q1:出现无法正确启动(0xc0000142),错误视窗如下
http://ppt.cc/q4KU
Q2:字串Alice无法显示出来,错误视窗如下
http://ppt.cc/WnE4
程式码(Code):(请善用置底文网页, 记得排版)
Q1:/* prog4_13, 输入字符 */
#include <stdio.h>
#include <stdlib.h>
int main(void)
{
char ch;
printf("Input a character:");
scanf_s("%c",&ch); /* 由键盘输入字符并指定给变量ch */
printf("ch=%c, ascii code is %d\n",ch,ch);
system("pause");
return 0;
}
Q2:/* prog4_15, 输入字串 */
#include <stdio.h>
#include <stdlib.h>
int main(void)
{
char name[10]; /* 宣告字符阵列 */
printf("What's your name: ");
scanf_s("%s",name); /* 输入字串,并由字符阵列name所接收 */
printf("Hi, %s, How are you?\n",name); /* 印出字串的内容 */
system("pause");
return 0;
}
补充说明(Supplement):
完全依书上范例无更动程式码
已google过,但都无法解决问题
恳请各位帮忙.