appear before type-identifiers d, i, o, u, x, and X.
display value as long, for example, long integer (ld) and long unsigned integer (lu).
#include <stdio.h> main(){ int f = 999999999; printf(" %lu \n",f); }
10000