【求助】为什么教材上的这个例子,在DOSbox上运行错误?
例1.3 求两个整数中的较大者#include <stdio.h>
int main()
{
int max(int x,int y);
int a,b,c;
scanf("%d,%d",&a,&b);
c=max(a,b);
printf("max=%d\n",c);
}
//求两个整数中的较大者的max函数
int max(int x,int y)
{
int z;
if(x>y)z=x;
else z=y;
}
我首先在VS上输入过,然后它显示说scanf is not safe.之类的然后建议用scanf_s,然并卵,还是调试失败。然后我用了DOSbox,它就显示说'z'is assigned a value which never used in function max.
到底是为什么啊?求救求救