#include "stdio.h"
int main( )
{
int x, y;
y=x(5);
return 0;
}
MSVC 2010 コンパイラで次のエラーが発生します。
Error 1 error C2064: term does not evaluate to a function taking 1 arguments c:\users\ae\documents\visual studio 2010\projects\text\text\text.cpp 13
2 IntelliSense: expression must have (pointer-to-) function type c:\users\ae\documents\visual studio 2010\projects\text\text\text.cpp 13
これはセマンティック エラーですか、それとも構文エラーですか?