Contact: aviboots(AT)netvision.net.il
40,904 questions
53,356 answers
573 users
#include <stdio.h> int main(void) { long long ll; ll = 89235782365; // %I64d for mingw32-gcc printf("ll = %I64d", ll); // %lld return 0; } /* run: ll = 89235782365 */