为什么在visual studio2015中一运行就提示已停止工作
#include<stdio.h>struct carthy
{
char name[10];
char shape[10];
char color[10];
int price;
char area[20];
};
int main()
{
struct carthy carthy1;
scanf_s("%s", &carthy1.name);
scanf_s("%s", &carthy1.shape);
scanf_s("%s", &carthy1.color);
scanf_s("%d", &carthy1.price);
scanf_s("%s", &carthy1.area);
printf("%s %s %s %d %s", carthy1.name, carthy1.shape, carthy1.color, carthy1.price, carthy1.area);
return 0;
}