Hi,
I'm testing this on FreeBSD 10.2 amd64.
Following is the simple program:
and the output is as expected 16. But when I try to assign a number:
I got the error:
But how come ?
I'm testing this on FreeBSD 10.2 amd64.
Following is the simple program:
Code:
#include <stdio.h>
int main() {
__int128_t bundle;
fprintf (stdout, "bundle size: %ld\n", sizeof(bundle));
return 0;
}
Code:
__int128_t bundle = 0x773002e636f6d6d656e7400000000000;
Code:
parseop.c:7:22: error: integer constant is larger than the largest unsigned integer type
__int128_t bundle = 0x773002e636f6d6d656e7400000000000;