关于VS2015错误
在VS2015中#include <stdio.h>
main()
{
int max(int x, int y);
int a, b, c;
scanf("%d,%d", &a, &b);
c= (a, b);
printf("max=%d",c);
}
正确而下面是老师讲的
#include <stdio.h>
main()
{
int max(int x, int y);
int a, b, c;
scanf("%d,%d", &a, &b);
c= max(a, b);
printf("max=%d",c);
}
显示错误
1>TextFile1.obj : error LNK2019: 无法解析的外部符号 _max,该符号在函数 _main 中被引用
1>C:\Users\Administrator\Documents\C语言训练\ConsoleApplication2\Debug\ConsoleApplication2.exe : fatal error LNK1120: 1 个无法解析的外部命令
========== 生成: 成功 0 个,失败 1 个,最新 0 个,跳过 0 个 ==========