Contact: aviboots(AT)netvision.net.il
39,870 questions
51,793 answers
573 users
#include <stdio.h> int main() { // Initialize an unsigned long long variable unsigned long long n = 12345678901234567890ULL; printf("The value of n is: %llu\n", n); return 0; } /* run: The value of n is: 12345678901234567890 */