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 complete term #include<stdio.h> means meaning of #includewith definition (https://www.askmehelpdesk.com/showthread.php?t=389934)

  • Aug 24, 2009, 06:46 AM
    middha1raman
    Meaning of complete term #include<stdio.h> means meaning of #includewith definition
    Hello this is raman middha I have a problum in one question meaning of #include<stdio.h>
    Explain it
  • Aug 24, 2009, 06:53 AM
    stevetcg

    Basically it is telling to the compiler to make the library stdio.h available so that the functions can be used in your code.

    Stdio.h includes all of the standard I/O functionality (like allowing keyboard input, etc)
  • Aug 31, 2009, 05:43 AM
    middha1raman
    Sir thanks for giving such kind of support but one thing I want to clear meaning of only# in header file with technical definition
  • Sep 4, 2009, 03:21 AM
    patilrok

    In C programming # stands for preprocessors..
    Means that it get executed first...
    This means stdio library get's embeded into your executable..
  • Jan 15, 2012, 06:58 AM
    msk2089
    Means of #include <stdio.h>
  • May 1, 2012, 06:33 PM
    sapan gupta
    # means preproceesor directives the process start to be a before compilation and include <stdio.h> means all input and output pre define functions to be include .
  • May 23, 2012, 11:24 AM
    john09ece09
    '#' is a preprocessor directive. The compilers processes
    Lines in a code starting with a '#' before it compiles the
    Whole code . Example #define TEN 10 the compiler would
    Replace all instances of TEN by 10 in the code and only then
    Compile the code...
  • Feb 11, 2014, 07:17 AM
    dhairya94
    #include<stdio.h>

    '#' is a preprocessor than include is stand for including header files which is in angular brackets and now the meaning of <> angular bracket is used to shown the compiler that search files from subdirectory of Library and std means Standard io means Input/Output and
    .h that means it includes header file.

  • All times are GMT -7. The time now is 11:09 PM.