root/GnuDevelopmentTools/src/longmod.c

Revision 7, 220 bytes (checked in by wataru, 5 years ago)

1st edition

Line 
1 #include <stdio.h>
2
3 unsigned long long a = 12340000, b = 10000;
4
5 int main() {
6   printf("sizeof(unsigned long long) is %d bytes\n",
7           sizeof(unsigned long long));
8   printf("a % b = %lld\n", a % b);
9   return 0;
10  }
Note: See TracBrowser for help on using the browser.