int mian()
{
int max(int x, int y);
int a, b, c;
printf("please into any number :");
scanf("%d,%d", &a, &b);
c = max(a, b);
printf("max is %d\n", c);
return 0;
}
错误提示是
错误 1 error C4996: 'scanf': This function or variable may be unsafe. Consider using scanf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details. d:\visualstudio 2013 projects\project3\project3\源.c 7 1 Project3