Current location - Plastic Surgery and Aesthetics Network - Plastic surgery and beauty - How to output long integers in C language?
How to output long integers in C language?
In C language, you can output long integer values through the output format specifier in the output function printf.

The specific format can refer to the following program segments:

Dragon? int? a = 123456789;

printf("%ld ",a); ? //? %ld means to output variable a in the data format of long integer, and the output result is 123456789.