I'm using double long in my 64 bit computer and sizeof(double long) is 16 bytes.
So I do the following assignment:
long double f = 0xA0000000000000000000000000000000; // 32 characters in hex
and I get this warning: warning: integer constant is too large for its type. That warning doesn't seem correct, my constant can be easily saved in a 128bit value. So, why do I get the warning?
I also have this code:
long double tmp = 0x90000000CCCCCCCC0000000000000000;
long double res = (f & tmp); // where f is the previously defined variable
and I get the following error error: invalid operands to binary &. Why ?
long doubleis a floating-point type. – Mysticial Feb 13 at 11:33long long? – Michael Krelin - hacker Feb 13 at 11:34long longin my 64bit machine is unfortunately a 64bit value, not 128bit as I need. @Mystical seems you are correct that's why&doesn't work, but is there perhaps another 128bit type in C that I can use instead? – Fooko R. Feb 13 at 11:36