The argument for printf that formats a long

clong-integerprintf

The printf function takes an argument type, such as %d or %i for a signed int. However, I don't see anything for a long value.

Best Answer

Put an l (lowercased letter L) directly before the specifier.

unsigned long n;
long m;

printf("%lu %ld", n, m);