I declare a variable for a 64 bit counter as :
long long call_count;
What is the format specifier that I should use in print statements?
long long t1; //signed unsigned long long t2; //unsigned printf("%lld",t1); printf("%llu",t2);