m.kelas-karyawan-ftumj.prestasi.web.id Layanan Informasi 17 Jam
Telp/Fax : 021-8762002, 8762003, 8762004, 87912360
HP/SMS : 081 1110 4824 27, 0812 9526 2009, 08523 1234 000
WhatsApp : 0817 0816 486, 0812 9526 2009
email : _Hubungi Kami__ silahkan klik
Chatting dengan Staf :
ggkarir.com
ggiklan.com
Pilih Bahasa :   ID   EN   Permintaan Katalog / Brosur (GRATIS via POS)   Kelas Karyawan   Reguler
D3 Teknik ElektroSMPPartai PolitikJadwal Sholat & ImsyakUmumD3 MPRS (Manajemen Pelayanan RS)S1 Teknologi PanganBiologiHTML 5InternetDebat Teka-Teki

   
Cari  
    Teknologi Informasi

    Sebelumnya  (C Sharp syntax) (C.a.R.)  Berikutnya    

C standard library

The C Standard Library is the standard library for the C programming language, as specified in the ANSI C standard.[1] It was developed at the same time as the C POSIX library, which is a superset of it[citation needed]. Since ANSI C was adopted by the International Organization for Standardization,[2] the C standard library is also called the ISO C library.

The C standard library provides macros, type definitions, and functions for tasks like string handling, mathematical computations, input/output processing, memory allocation and several other operating system services.

Contents

Application programming interface

Header files

The application programming interface (API) of the C standard library is declared in a number of header files. Each header file contains one or more function declarations, data type definitions, and macros.

After a long period of stability, three new header files (iso646.h, wchar.h, and wctype.h) were added with Normative Addendum 1 (NA1), an addition to the C Standard ratified in 1995. Six more header files (complex.h, fenv.h, inttypes.h, stdbool.h, stdint.h, and tgmath.h) were added with C99, a revision to the C Standard published in 1999, and five more files (stdalign.h, stdatomic.h, stdnoreturn.h, threads.h, and uchar.h) with C11 in 2011. In total, there are now 29 header files:

NameFromDescription
<assert.h> Contains the assert macro, used to assist with detecting logical errors and other types of bug in debugging versions of a program.
<complex.h>C99A set of functions for manipulating complex numbers.
<ctype.h> Defines set of functions used to classify characters by their types or to convert between upper and lower case in a way that is independent of the used character set (typically ASCII or one of its extensions, although implementations utilizing EBCDIC are also known).
<errno.h> For testing error codes reported by library functions.
<fenv.h>C99Defines a set of functions for controlling floating-point environment.
<float.h> Defines macro constants specifying the implementation-specific properties of the floating-point library.
<inttypes.h>C99Defines exact width integer types.
<iso646.h>NA1Defines several macros that implement alternative ways to express several standard tokens. For programming in ISO 646 variant character sets.
<limits.h> Defines macro constants specifying the implementation-specific properties of the integer types.
<locale.h> Defines localization functions.
<math.h> Defines common mathematical functions.
<setjmp.h> Declares the macros setjmp and longjmp, which are used for non-local exits.
<signal.h> Defines signal handling functions.
<stdalign.h>C11For querying and specifying the alignment of objects.
<stdarg.h> For accessing a varying number of arguments passed to functions.
<stdatomic.h>C11For atomic operations on data shared between threads.
<stdbool.h>C99Defines a boolean data type.
<stddef.h> Defines several useful types and macros.
<stdint.h>C99Defines exact width integer types.
<stdio.h> Defines core input and output functions
<stdlib.h> Defines numeric conversion functions, pseudo-random numbers generation functions, memory allocation, process control functions
<stdnoreturn.h>C11For specifying non-returning functions.
<string.h> Defines string handling functions.
<tgmath.h>C99Defines type-generic mathematical functions.
<threads.h>C11Defines functions for managing multiple Threads as well as mutexes and condition variables.
<time.h> Defines date and time handling functions
<uchar.h>C11Types and functions for manipulating Unicode characters.
<wchar.h>NA1Defines wide string handling functions.
<wctype.h>NA1Defines set of functions used to classify wide characters by their types or to convert between upper and lower case

Three of the header files (complex.h, stdatomic.h, threads.h) are conditional features that implementations need not support.

The POSIX standard added several nonstandard C headers for Unix-specific functionality. Many have found their way to other architectures. Examples include unistd.h and signal.h. A number of other groups are using other nonstandard headers - most flavors of Linux have alloca.h and HP OpenVMS has the va_count() function.

Documentation

On Unix-like systems, the authoritative documentation of the actually implemented API is provided in form of man pages. On most systems, man pages on standard library functions are in section 3; section 7 may contain some more generic pages on underlying concepts (e.g. man 7 math_error in Linux).

Implementations

Unix-like systems typically have a C library in shared library form, but the header files (and compiler toolchain) may be absent from an installation so C development may not be possible. The C library is considered part of the operating system on Unix-like systems.[citation needed] The C functions, including the ISO C standard ones, are widely used by programs, and are regarded as if they were not only an implementation of something in the C language, but also de facto part of the operating system interface. Unix-like operating systems generally cannot function if the C library is erased.

By contrast, on Microsoft Windows, the core system dynamic libraries (DLLs) do not provide an implementation of the C standard library; this is provided by each compiler individually. Compiled applications written in C are either statically linked with a C library, or linked to a dynamic version of the library that is shipped with these applications, rather than relied upon to be present on the targeted systems. Functions in a compiler's C library are not regarded as interfaces to Microsoft Windows.

Many other implementations exist, provided with both various operating systems and C compilers.

Although there exist too many implementations to list, some popular implementations follow:

  • BSD libc, implementations distributed under BSD operating systems.
  • GNU C Library, used in GNU/Linux and GNU/HURD.
  • Microsoft C Run-time Library, part of Microsoft Visual C++
  • dietlibc, an alternative small implementation of the C standard library (MMU-less)
  • uClibc, a C standard library for embedded Linux systems (MMU-less)
  • Newlib, a C standard library for embedded systems (MMU-less)[3]
  • klibc, primarily for booting Linux systems.
  • EGLIBC, variant of glibc for embedded systems.
  • musl, another lightweight C standard library implementation for Linux systems[4]
  • Bionic, originally developed by Google for the Android embedded system operating system, derived from BSD libc.

Compiler built-in functions

Some compilers (for example, GCC[5]) provide built-in versions of many of the functions in the C standard library; that is, the implementations of the functions are written into the compiled object file, and the program calls the built-in versions instead of the functions in the C library shared object file. This reduces function call overhead, especially if function calls are replaced with inline variants, and allows other forms of optimization (as the compiler knows the control-flow characteristics of the built-in variants), but may cause confusion when debugging (for example, the built-in versions cannot be replaced with instrumented variants).

However, the built-in functions must behave like ordinary functions in accordance with ISO C. The main implication is that the program must be able to create a pointer to these functions by taking their address, and invoke the function by means of that pointer. If two pointers to the same function are derived in two different translation unit in the program, these two pointers must compare equal; that is, the address comes by resolving the name of the function, which has external (program-wide) linkage.

Linking, libm

Under Linux and FreeBSD,[6] the mathematical functions (as declared in math.h) are bundled separately in the mathematical library libm. If any of them are used, the linker must be given the directive -lm.

Detection

According to the C standard the macro __STDC_HOSTED__ shall be defined to 1 if the implementation is hosted. A hosted implementation has all the headers specified by the C standard. An implementation can also be freestanding which means that these headers will not be present. If an implementation is freestanding, it shall define __STDC_HOSTED__ to 0.

Concepts, problems, workarounds

Buffer overflow vulnerabilities

Some functions in the C standard library have been notorious for having buffer overflow vulnerabilities and generally encouraging buggy programming ever since their adoption.[7] The most criticized items are:

  • string-manipulation routines, including strcpy() and strcat(), for lack of bounds checking and possible buffer overflows if the bounds aren't checked manually; there are now alternative routines, such as strncpy() and strncat()
  • string routines in general, for side-effects, encouraging irresponsible buffer usage, not always guaranteeing valid null-terminated output, linear length calculation;[8]
  • printf() family routines, for spoiling the execution stack when the format string doesn't match the arguments given. This fundamental flaw created an entire class of attacks: format string attacks.
  • gets() and scanf() I/O routines, for lack of (either any or easy) input length checking

Except the extreme case with gets(), all the security vulnerabilities can be avoided by introducing auxiliary code to perform memory management, bounds checking, input checking, etc. This is often done in form of wrappers that make standard library functions safer and easier to use. This dates back to as early as The Practice of Programming book by B. Kernighan and R. Pike where the authors commonly use wrappers that print error messages and quit the program if an error occurs.

Threading problems, vulnerability to race conditions

The mktemp() and strerror() routines are criticized for being thread unsafe and otherwise vulnerable to race conditions.

Error handling

The error handling of the functions in the C standard library is not consistent and sometimes confusing. This can be fairly well summarized by the Linux manual page math_error which says:

The current (version 2.8) situation under glibc is messy. Most (but not all) functions raise exceptions on errors. Some also set errno. A few functions set errno, but don't raise an exception. Very few functions do neither.

Standardization

The original C language provided no built-in functions such as I/O operations, unlike traditional languages such as COBOL and Fortran.[citation needed] Over time, user communities of C shared ideas and implementations of what is now called C standard libraries. Many of these ideas were incorporated eventually into the definition of the standardized C language.

Both Unix and C were created at AT&T's Bell Laboratories in the late 1960s and early 1970s. During the 1970s the C language became increasingly popular. Many universities and organizations began creating their own variants of the language for their own projects. By the beginning of the 1980s compatibility problems between the various C implementations became apparent. In 1983 the American National Standards Institute (ANSI) formed a committee to establish a standard specification of C known as "ANSI C". This work culminated in the creation of the so-called C89 standard in 1989. Part of the resulting standard was a set of software libraries called the ANSI C standard library.

POSIX standard library

POSIX (and SUS) specifies a number of routines that should be available over and above those in the C standard library proper; these are often implemented alongside the C standard library functionality, with varying degrees of closeness. For example, glibc implements functions such as fork within libc.so, but before NPTL was merged into glibc it constituted a separate library with its own linker flag argument. Often, this POSIX-specified functionality will be regarded as part of the library; the C library proper may be identified as the ANSI or ISO C library.

Ongoing work

The ISO C committee published Technical reports TR 24731-1 and is working on TR 24731-2 to propose adoption of some functions with bounds checking and automatic buffer allocation, correspondingly. The former has met severe criticism with some praise,[9][10] the latter received mixed responses. Despite this, TR 24731-1 has been implemented into Microsoft's C standard library and its compiler issues warnings when using old 'insecure' functions.

The C standard library in other languages

Some languages include the functionality of the standard C library in their own libraries. The library may be adapted to better suit the language's structure, but the operation semantics are kept similar. The C++ language, for example, includes the functionality of the C standard library in the namespace std (e.g., std::printf, std::atoi, std::feof), in header files with similar names to the C ones (cstdio, cmath, cstdlib, etc.). Other languages that take similar approaches are D and the main implementation of Python known as CPython. In the latter, for example, the built-in file objects are defined as "implemented using C's stdio package",[11] so that the available operations (open, read, write, etc.) are expected to have the same behavior as the corresponding C functions.

Comparison to standard libraries of other languages

The C standard library is small compared to the standard libraries of some other languages. The C library provides a basic set of mathematical functions, string manipulation, type conversions, and file and console-based I/O. It does not include a standard set of "container types" like the C++ Standard Template Library, let alone the complete graphical user interface (GUI) toolkits, networking tools, and profusion of other functionality that Java provides as standard. The main advantage of the small standard library is that providing a working ISO C environment is much easier than it is with other languages, and consequently porting C to a new platform is relatively easy.

See also

  • C++ standard library

References

  1. ^ ISO/IEC (1999). ISO/IEC 9899:1999(E): Programming Languages - C §7.19.1 para 1
  2. ^ "C Standards". Keil. http://www.keil.com/support/docs/1893.htm. Retrieved 24 November 2011.
  3. ^ "Re: Does Newlib support mmu-less CPUs?". Cygwin.com. 23 March 2006. http://www.cygwin.com/ml/newlib/2006/msg00224.html. Retrieved 28 October 2011.
  4. ^ "musl libc". Etalabs.net. http://www.etalabs.net/musl/. Retrieved 28 October 2011.
  5. ^ Other built-in functions provided by GCC, GCC Manual
  6. ^ "Compiling with cc". http://www.freebsd.org/doc/en_US.ISO8859-1/books/developers-handbook/tools-compiling.html. Retrieved 03/02/2013.
  7. ^ Morris worm that takes advantage of the well-known vulnerability in gets() have been created as early as in 1988.
  8. ^ in C standard library, string length calculation and looking for a string's end have linear time complexities and are inefficient when used on the same or related strings repeatedly
  9. ^ Do you use the TR 24731 ‘safe’ functions in your C code? - Stack overflow
  10. ^ "Austin Group Review of ISO/IEC WDTR 24731". http://www.open-std.org/jtc1/sc22/wg14/www/docs/n1106.txt. Retrieved 28 October 2011.
  11. ^ "The Python Standard Library: 6.9. File Objects". Docs.python.org. http://docs.python.org/library/stdtypes.html#bltin-file-objects. Retrieved 28 October 2011.

Further reading

  • Plauger, P. J. (1992). The Standard C library. Englewood Cliffs, N.J: Prentice Hall. ISBN 0-13-131509-9. 

External links

    Sebelumnya  (C Sharp syntax) (C.a.R.)  Berikutnya    





Tags: C standard library, Teknologi Informasi, 2243, C standard library C Standard Library Data types Character classification Strings Mathematics File input/output Date/time Localization Memory allocation Process control Signals Alternative tokens Miscellaneous headers :, lt;assert.h, gt;, lt;errno.h, gt;, lt;setjmp.h, gt;, lt;stdarg.h, gt; The C Standard Library is the standard library for the C programming language as specified in the ANSI C standar, C standard library, Bahasa Indonesia, Contoh Instruksi, Tutorial, Referensi, Buku, Petunjuk, Teknik elektro–electrical and electronic engineering, Forumkarir, D3 manajemen informatika, Forum karir, Manajemen industri, Forumkesehatan, Ilmu komunikasi, Picture, P2k m.kelas karyawan ftumj, prestasi.web.id
 Pendaftaran Online    Program Kuliah Shift    Permintaan Keringanan Uang Kuliah    Perkuliahan Reguler    Download Brosur    Bursa Karir    Quran Online
Kelas Reguler (Hybrid)
Koleksi Jenis Foto
Penerimaan Mahasiswa/i
Program Studi
Layanan + Download

Pustaka Khusus
Jaringan Website Perkuliahan Karyawan
Jaringan Website Kuliah Shift
Jaringan Website Utama
Jaringan Website Perkuliahan Reguler
Jaringan Website Program Pascasarjana (S2)

 Buku Referensi    Waktu Shalat    Semua Pariwara    Program Pascasarjana (S2)    Program Perkuliahan Pengusaha    Kelas Gratis    Kuliah Blended di 112 PTS Terbaik    Jadwal Ujian Try Out    Beragam Perdebatan    Ensiklopedia Bebas    Tips & Trik Psikotes
Kolina (Choline), Kolina (Choline), Kolina (Choline), dsb.
Menanam benih Labu Parang/Kuning di pot / halaman

Permintaan Brosur
(GRATIS via POS)
Nama Lengkap

Alamat Lengkap Penerima

Kota & Provinsi

Kode Pos

Email (tidak wajib)

▧ harus diisi lengkap & jelas
Atau kirimkan nama dan
alamat lengkap via SMS ke HP:
0811 1990 9026


Download BROSUR
Brosur Kelas Karyawan
Gabungan Seluruh Wilayah Indonesia

pdf (11,2 MB)ZIP (8,8 MB)
Image/jpg (36,2 MB)
Brosur Kelas Karyawan
JABODETABEK

pdf (5,5 MB)ZIP (4,4 MB)
Image/jpg (13,2 MB)
Brosur Kelas Karyawan
DIY,JATENG,JATIM & BALI

pdf (4,4 MB)ZIP (3,5 MB)
Image/jpg (14,5 MB)
Brosur Kelas Karyawan
JAWA BARAT

pdf (2,8 MB)ZIP (2,2 MB)
Image/jpg (7,1 MB)
Brosur Kelas Karyawan
SULAWESI

pdf (1,9 MB)ZIP (1,5 MB)
Image/jpg (5,6 MB)
Brosur Kelas Karyawan
SUMATERA & BATAM

pdf (2,2 MB)ZIP (1,7 MB)
Image/jpg (6,5 MB)
Brosur Kuliah Reguler
pdf (4,1 Mb)ZIP (8,4 Mb)
Kalender NKRI 2023
Image/jpg (2,1 Mb)pdf (400 kb)
Soal2 UN & SBMPTN
pdf(3,5 Mb)ZIP(1,5 Mb)
Strategi Meningkatkan
Kualitas Pendidikan, Pendapatan dan Sumber Daya PTS

pdf(6 Mb)Image/jpg(16 Mb)

STRATEGI Meningkatkan
Kualitas Pendidikan, Pendapatan dan Sumber Daya PTS
http://kpt.co.id
Terobosan Baru

PT. Gilland Ganesha
Membutuhkan Segera

  • Design Grafis
  • Web Programmer

Penjelasan Lebih Lanjut di :
Info karir

Anak kucing, menyikat gigi kucing, tips agar kucing dapat lebih manja, dsb.
155 Ras Kucing di Dunia

Facebook Kuliah Karyawan

Tautan Elok
silakan klik
Kumpulan Pustaka Dunia

ipmmalang.web.id  |  stiesahidbali.web.id  |  staialandina.web.id  |  mm-stieswadaya.web.id  |  magister-stieswadaya.web.id  |  p2k.nusamandiri.ac.id  |  uin-al-azhaar.web.id  |  unusida.web.id  |  unmkramat.web.id  |  unmjatiwaringin.web.id  |  s2-uwks.web.id

teknik-elektro–electrical-and-electronic-engineering-ecp.forumkarir.web.id  ⌖   d3-manajemen-informatika-ecp.forum-karir.web.id  ⌖   manajemen-industri-ecp.forumkesehatan.web.id  ⌖   ilmu-komunikasi-ecp.picture.web.id
p2k.iai-al-azhaar.ac.id  ⌖   ipmmalang.web.id  ⌖   stitlakbok.web.id  ⌖   stiebiitm.web.id  ⌖   stiesahidbali.web.id  ⌖   pljdepok.web.id  ⌖   staialandina.web.id  ⌖   stieswadaya.web.id  ⌖   stih-awanglong.web.id  ⌖   mm-stieswadaya.web.id
regency-of-nias-wb-28397.br.web.id  ⌖   kaba.bs.web.id  ⌖   wilayah-ibu-kota-australia-wb-31294.bsdmart.com  ⌖   kategori-lembaga-nahdlatul-ulama.bsdmart.web.id
perkuliahan-s2-puputan-p2k-polnas-denpasar.singokarir.com  ⌖   program-d3-bekasi-p2k-sttbinatunggal.singokerja.com  ⌖   program-kelas-diploma-tiga-kepanjen-p2k-stiki-malang.singomart.com  ⌖   program-kuliah-strata-satu-p2k-undaris.singomart.web.id
fakultas-ilmu-kesehatan-fik-p2k-polnas-denpasar.singonews.com  ⌖   d3-komputer-akuntansi-bekasi-p2k-sttbinatunggal.forum-hongshui.web.id  ⌖   teknik-industri-s1-kepanjen-p2k-stiki-malang.forumhukum.web.id  ⌖   ilmu-hukum-ungaran-jawa-tengah-p2k-undaris.forum-hukum.web.id