Current location - Plastic Surgery and Aesthetics Network - Plastic surgery and medical aesthetics - How to output when using long long in c language? It's useless with %lld ~
How to output when using long long in c language? It's useless with %lld ~
It should be %I64d.

% [logo] [width] [. Accuracy ][{ h | L | I64 | L }] type

This is a pattern for formatting strings.

Where flags refers to symbols and leading zeros or spaces.

Width is the output width.

Accuracy is accuracy.

{h | l | I64 | L} is an optional dropout type.

Type is an output type identifier, such as d, i, o, x, c, s, etc.