Contact: aviboots(AT)netvision.net.il
40,886 questions
53,294 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 */