2
0
mirror of https://frontier.innolan.net/github/amigaos-cross-toolchain6.git synced 2024-10-19 10:29:55 +00:00
Files
amigaos-cross-toolchain6/test/test12/test.c
2017-05-27 00:00:48 +02:00

19 lines
286 B
C
Executable File

#include <stdio.h>
int main(int argc, char *argv[])
{
long long h = 0xDEADDEADDEADDEADll;
printf("%llx\n",h);
//printf("%lld\n",(long long)1971);
#if 0
long long ll = 1000000001;
ll *= 3;
printf("%lld\n",ll);
ll = 0x100000001;
ll *= 0x300000;
printf("%llx\n", ll);
#endif
return 0;
}