C library function definition.

Discussion in 'C' started by SouravP, May 16, 2008.

  1. SouravP

    SouravP New Member

    Joined:
    May 16, 2008
    Messages:
    1
    Likes Received:
    0
    Trophy Points:
    0
    Can you please give me an idea on library function definition in C programming language.Where the C - library functions are defined and declared?
     
  2. eash

    eash New Member

    Joined:
    May 21, 2008
    Messages:
    3
    Likes Received:
    0
    Trophy Points:
    0
    C library functions are the built-in functions that are accompanied along with the C compiler. they are defined and declared in their respective header files. they are the readily available functions which can be used directly without we writing a code for it. ex: printf() and scanf () are the formatted input and output functions which are declared and defined in the header file <stdio.h>
    regards,
    eash
     
  3. atul.sharma12

    atul.sharma12 New Member

    Joined:
    May 21, 2008
    Messages:
    15
    Likes Received:
    2
    Trophy Points:
    0
    Occupation:
    S/W Engg.
    Location:
    This Planet only!!!!
    The C standard library is a now-standardized collection of header files and library routines used to implement common operations, such as input/output and string handling, in the C programming language.

    All the C library functions are declared in the different header files.
     

Share This Page

  1. This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
    By continuing to use this site, you are consenting to our use of cookies.
    Dismiss Notice