C standart kütüphanesi

C standart kütüphanesi, C programlama dilindeki başlık dosyalarının ve kütüphane rutinlerinin standartlaştırılmış bir toplamıdır.

C Standart Kütüphanesi
Öncü Dosyaları
  • assert.h
  • complex.h
  • ctype.h
  • errno.h
  • fenv.h
  • float.h
  • inttypes.h
  • iso646.h
  • limits.h
  • locale.h
  • math.h
  • setjmp.h
  • signal.h
  • stdarg.h
  • stdbool.h
  • stddef.h
  • stdint.h
  • stdio.h
  • stdlib.h
  • string.h
  • tgmath.h
  • time.h
  • wchar.h
  • wctype.h

ANSI C kütüphanesi öncü dosyalar

<assert.h>Mantıksal hataları bulmada yardımcı olmak için assert makrolarını içerir.
<complex.h>Karmaşık sayılarla işlem yapmak için fonksyionlar içerir.
<ctype.h>Contains 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>Hata kodlarını denemek için fonksiyonlar içerir.
<fenv.h>Ondalıklı sayıların kontrolünü sağlayan fonksiyonlar tanımlar.
<float.h>Contains defined constants specifying the implementation-specific properties of the floating-point library, such as the minimum difference between two different floating-point numbers (_EPSILON), the maximum number of digits of accuracy (_DIG) and the range of numbers which can be represented (_MIN, _MAX).
<inttypes.h>For precise conversion between integer types. (New with C99)
<iso646.h>For programming in ISO 646 variant character sets. (New with NA1)
<limits.h>Contains defined constants specifying the implementation-specific properties of the integer types, such as the range of numbers which can be represented (_MIN, _MAX).
<locale.h>For setlocale() and related constants. This is used to choose an appropriate locale.
<math.h>Yaygın matematik fonksiyonlarını içerir.
<setjmp.h>Declares the macros setjmp and longjmp, which are used for non-local exits
<signal.h>Çeşitli istisnai durumların konrolünü için gerekir.
<stdarg.h>For accessing a varying number of arguments passed to functions.
<stdbool.h>For a boolean data type. (New with C99)
<stdint.h> For defining various integer types. (New with C99)
<stddef.h>Yeni bazı tipler ve makrolar yaratmak içindir.
<stdio.h>Çekirdek girdi ve çıktı modülünü içerir. This file includes the venerable printf function.
<stdlib.h>For performing a variety of operations, including conversion, pseudo-random numbers, memory allocation, process control, environment, signalling, searching, and sorting.
<string.h>Dizelerle işlemler yapmak içindir.
<tgmath.h>For type-generic mathematical functions. (New with C99)
<time.h>Zaman ve tarih biçimlerini dönüştürmek içindir.
<wchar.h>For manipulating wide streams and several kinds of strings using wide characters - key to supporting a range of languages. (New with NA1)
<wctype.h>For classifying wide characters. (New with NA1)

Ayrıca bakınız

This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.