Communicator e3000 MPE/iX Release 6.5 (Non-Platform Software Release C.65.00 (30216-90291)
Chapter 3 83
Growth Solution
C/iX Supports 64-bit Integers
The following sample program is an example of how to declare, use, and print a 64-bit
integer using C/iX.
/* Compile on MPE/iX 6.5. */
/* With CCXL use "-Aa +e" or "-Ae". */
/* With c89 use "-Wc,+e". */
#include <stdio.h>
main(void)
{
long long bignumber = 1234567654321LL;
bignumber = bignumber * 1000000 + 123;
printf("bignumber = %lld\n", bignumber);
}