C Programming in Linux – Is There Any Manual?

cdocumentationman

While I find that we can read some manuals about Library calls (C library functions) & acsii in Linux. But I still do not find any manual about C precedence order so far.

So you can recommend other useful manual about C now. Thank you!

PS: Note that the manual can be accessed via man command in Linux, so do not take those online manual or books into answers please.

Best Answer

man libc covers standard C libraries (glibc, Linux libc) on Linux.

In "SEE ALSO" section, there are

syscalls(2), feature_test_macros(7), man-pages(7), standards(7)

You can look into the details by

man 2 syscalls

man 7 feature_test_macros

man 7 man-pages

man 7 standards