faz a écrit :
>
> I have tried this using VC++ 1998(older version)
>
> int main()
> {
> long long bas;
> return 0;
>
> }
>
>
> D:\Program Files\Microsoft Visual Studio\my projects\link list
> \long.cpp(4) : error C2632: 'long' followed by 'long' is illegal
> Error executing cl.exe.
>
> long.obj - 1 error(s), 0 warning(s)
>
> Not supported...I guess my compiler is 32-bit....Which compiler
> support this??
long long was introduced in C99. It is not really a surprise a compiler
didn't know about it in 98.
Michael