【发布时间】:2012-03-17 13:46:43
【问题描述】:
int ii, maxnum;
for(ii=1; ii<=num-1; ii++) {
if(count[ii]>max) { // the part where I get C2872 Ambiguous Symbol error
max = count[ii]; // the part where I get C2872 Ambiguous Symbol error
maxnum = ii;
}
}
我从来没有遇到过这个错误,这很令人沮丧。
【问题讨论】:
标签: c++ compiler-errors