Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Online C reference manuals [closed]

I've studied C programming in college some years ago and have developed some medium applications back then (nothing serious). Now I have to develop some more 'advanced' C applications (involving POSIX threads and RPC), but right now I'm a little rusty even with the basics.

Can anyone recommend me good online C reference manuals? This may help me get in tune faster.

like image 676
mmutilva Avatar asked Oct 10 '08 03:10

mmutilva


People also ask

Is there an official C documentation?

However, you asked for 'ultimate official source of standard C knowledge', and the only 'official' such source is the C standard, plus its corrigenda.

Does C have reference types?

There are two kinds of types in C#: reference types and value types. Variables of reference types store references to their data (objects), while variables of value types directly contain their data.

Which section of the manual contains the documentation of C library functions?

This is the C library that is nowadays used in all major Linux distributions. It is also the C library whose details are documented in the relevant pages of the man-pages project (primarily in Section 3 of the manual).

What is C document?

A file saved with c file extension is a source code file written in C programming language. The C file include all the implementation of application's functionality in the form of source code.


2 Answers

For the very basic I found this reference card very useful. Doesn't help with more advanced functions but it can help get the rust off.

like image 199
acrosman Avatar answered Oct 16 '22 06:10

acrosman


  • C standard library reference (both C89 and C99)
  • C89 library reference guide
  • GNU C tutorial (more than just a tutorial, quite a useful reference)

I got these all from a previous similar question on SO. I would like to credit the original posters, but unfortunately cannot seem to find that question.

like image 37
Dan Lenski Avatar answered Oct 16 '22 04:10

Dan Lenski