vs2012中printf输出字符串问题?请教各路大神
#include<stdio.h>#define PRAISE "what a super marvelous name!"
int main(void)
{
char name[40];
printf("What's your name?\n");
scanf_s("%s",name);
printf("Hello,%s.%s\n",name,PRAISE);
return 0;
}
其中printf无法输出名字,不知道什么原因