50 likes | 191 Views
ECE 103 Engineering Programming Chapter 15 C Standard Library. Herbert G. Mayer, PSU CS Status 7/16/2014 Initial content copied verbatim from ECE 103 material developed by Professor Phillip Wong @ PSU ECE. C Standard Library C provides standard functions by using external code libraries
E N D
ECE 103 Engineering ProgrammingChapter 15C Standard Library Herbert G. Mayer, PSU CS Status 7/16/2014 Initial content copied verbatim from ECE 103 material developed by Professor Phillip Wong @ PSU ECE
C Standard Library C provides standard functions by using external code libraries Before using a library function, its header file must be included (e.g., #include <stdio.h>) Once a header file is included, all of the definitions, functions, and macros in that library become available to your C source 1
(Std: Blank=1989/1990 Standard, NA1=Normative Addendum 1, C99=1999 Standard)
(Std: Blank=1989/1990 Standard, NA1=Normative Addendum 1, C99=1999 Standard) 3
Online Resource Searchable online C /C++ library reference: http://www.cplusplus.com/reference/clibrary 4