Joseph
Joseph

Reputation: 401

Termination character reference

where I can find a COMPLETE termination character reference for C? I only know %i, %d, %u... And I'm not even sure those are called "termination character": that's why I don't know how to google them.

Thanks!

Upvotes: 1

Views: 115

Answers (3)

Michael Burr
Michael Burr

Reputation: 340218

I don't know how complete it is, but I like this one because it's concise (which might not be what you're looking for):

Note that it also includes non-standard items (like the apostrophe flag to indicate grouping digits).

Upvotes: 1

Nemo
Nemo

Reputation: 71535

You mean printf conversion specifiers?

I would rely on the POSIX spec, since it is normative (well, normative for POSIX anyway) and free.

Upvotes: 3

littleadv
littleadv

Reputation: 20272

You mean "Format specifiers". Try here.

Upvotes: 4

Related Questions