manohar143
Programmer
Hello Friends
I wrote a small program in C
main()
{
long long int a=0;
printf("test program"
printf("\n"
printf("%u%",sizeof(a));
printf("\n"
}
the above program works fine in my Dev C++ complier, actually i saved this file as .c extn...even i tried comipling in ASNI c comiplier...but i have no idea about the version of the compiler. The result of the above file is 8 bytes.
Can you please let me know whether is there any long long data type. If yes why it is not working in Microsoft VC ++ . It gives the following warining.
Copyright (c) Bullseye Testing Technology 1990-2001
Command line warning: -YX not supported, build times may increase dramatically
Noname1.C
D:/Edison/Noname1.C(5) : error C2632: 'long' followed by 'long' is illegal
D:/Edison/Noname1.C(12) : warning C4013: 'system' undefined; assuming extern returning int
warning cov816: original unmodified compile command fails
Error executing cl.exe.
I wrote a small program in C
main()
{
long long int a=0;
printf("test program"
printf("\n"
printf("%u%",sizeof(a));
printf("\n"
}
the above program works fine in my Dev C++ complier, actually i saved this file as .c extn...even i tried comipling in ASNI c comiplier...but i have no idea about the version of the compiler. The result of the above file is 8 bytes.
Can you please let me know whether is there any long long data type. If yes why it is not working in Microsoft VC ++ . It gives the following warining.
Copyright (c) Bullseye Testing Technology 1990-2001
Command line warning: -YX not supported, build times may increase dramatically
Noname1.C
D:/Edison/Noname1.C(5) : error C2632: 'long' followed by 'long' is illegal
D:/Edison/Noname1.C(12) : warning C4013: 'system' undefined; assuming extern returning int
warning cov816: original unmodified compile command fails
Error executing cl.exe.