C Reference Manual

Active4 years, 4 months ago

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.

Reference Manual. New Search: New & Featured Tests: List All Tests Alphabetically: By Specialty: Cardiovascular Tests: Diabetes Tests: Infectious Disease Tests: Pain Management Tests: Women's Health Tests: Files and Guides: Coverage Criteria: Newsletters: Search for a Test. The C book is freely available on-line. It is not really a reference manual, but still a pretty good resource. From the website: This is the online version of The C Book, second edition by Mike Banahan, Declan Brady and Mark Doran, originally published by Addison Wesley in 1991. The C-Language Reference Manual Simon Peyton Jones Thomas Nordin Dino Oliva Pablo Nogueira Iglesias April 23, 1998 Contents 1 Introduction 3 2 Syntax deļ¬nition 3. Standard C Library reference. C Library The elements of the C language library are also included as a subset of the C Standard library. Standard C Library reference. C Library The elements of the C language library are also included as a subset of the C Standard library. These cover many aspects, from general utility functions and macros to input/output functions and dynamic memory management functions.

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

Switch
1,7451 gold badge12 silver badges29 bronze badges
mmutilvammutilva
12.5k20 gold badges54 silver badges80 bronze badges

closed as not constructive by bmargulies, Lightness Races in Orbit, Linger, P.T., JJJJan 22 '13 at 20:47

Reference

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance. If this question can be reworded to fit the rules in the help center, please edit the question.

9 Answers

  • 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.

Frank V
16.3k31 gold badges95 silver badges141 bronze badges
Dan LenskiDan Lenski
54.5k9 gold badges58 silver badges98 bronze badges

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.

acrosmanacrosman
11.2k10 gold badges32 silver badges51 bronze badges

Don't forget man pages. If you are developing on any UNIX-derived platform (Linux, BSD, Cygwin) you can almost always do something like man printf or info printf to get documentation for any library function.

Frank SzczerbaFrank Szczerba
4,0273 gold badges28 silver badges30 bronze badges

It's not online, but hands down the best C reference is Harbison & Steele (yeah - it's better than K&R).

You can get the 4th edition for basically shipping (I don't know what improvements were made in the 5th ed.):

Michael BurrMichael Burr
291k41 gold badges455 silver badges686 bronze badges

manuals

tutorial

Arle NadjaArle Nadja

The best C reference by far is Kernighan and Ritchie's 'The C Programming Language' in it's dead tree form. Arduino serial printf. It's compact and complete.

For an online reference, you might try Brian Kernighan's Programming in C Tutorial.

JR LawhorneJR Lawhorne
2,0434 gold badges21 silver badges35 bronze badges

the C book is freely availableon-line. It is not really a referencemanual, but still a pretty goodresource. From the website:

This is the online version of The C Book, second edition by Mike Banahan, Declan Brady and Mark Doran, originally published by Addison Wesley in 1991. This version is made freely available.

While this book is no longer in print, its content is still very relevant today. The C language is still popular, particularly for open source software and embedded programming. We hope this book will be useful, or at least interesting, to people who use C.

Jan de VosJan de Vos
3,1421 gold badge17 silver badges15 bronze badges

I would recommend reading through the comp.lang.c FAQ at least once to help get the rust off. For reference material, you might want to grab a copy of the C Standard, the latest version of C99 with TC3 included is available for free here, for C89 the last draft version is available as a text file or you can pick up a copy of the The Annotated ANSI C Standard for a few bucks and have a hard copy of the actual standard (just ignore the 'annotations' on the right-hand pages). Since you are using POSIX you might want to become more familiar with the Single Unix Specification which includes the Standard C library as well as the POSIX functions, you can read/download SUSv3 at the Open Group (registration required but free and quick).

For an offline resource I would also recommend C: A Reference Manual (5th Edition) by Harbison & Steele, it thoroughly covers every language feature and standard function of C and documents differences between the various standard versions.

C Language Reference Manual

Robert GambleRobert Gamble
87.2k20 gold badges136 silver badges135 bronze badges

C Reference Manual Pdf

The best online reference for C and C++ is probably www.cplusplus.com

QuantumPete

QuantumPeteQuantumPete

Ansi C Reference Manual

2,5601 gold badge16 silver badges24 bronze badges

Not the answer you're looking for? Browse other questions tagged creference-manual or ask your own question.