Ask Me Help Desk

Ask Me Help Desk (https://www.askmehelpdesk.com/forum.php)
-   C (https://www.askmehelpdesk.com/forumdisplay.php?f=438)
-   -   Meaning of #include (https://www.askmehelpdesk.com/showthread.php?t=599310)

  • Sep 28, 2011, 05:50 AM
    kancup
    Meaning of #include
    Meaning of #include<stdio.h>
  • Sep 29, 2011, 06:06 PM
    TheCompromiser
    Stdio.h, which stands for "standard input/output header", is the header in the C standard library that contains macro definitions, constants, and declarations of functions and types used for various standard input and output operations.
    Courtesy of Wikipedia..
    http://en.wikipedia.org/wiki/Stdio.h
  • Oct 5, 2011, 09:37 PM
    karthikk296d
    # denotes a preprocessor statement(i.e) in simpler words it's the computers way of telling that it has included the given library function in the given program.
    e.g.. #include<stdio.h>
    The above statement means that all functions belonging to stdio.h library is inherited to the program and all keywords relating to that is also inherited

  • All times are GMT -7. The time now is 05:23 AM.