[ Home  |  FAQ-Related Q&As  |  General Q&As  |  Answered Questions ]


    Search the Q&A Archives


...#include<stdio.h> means actually?

<< Back to: comp.lang.c Answers to Frequently Asked Questions (FAQ List)

Question by ravi
Submitted on 3/30/2004
Related FAQ: comp.lang.c Answers to Frequently Asked Questions (FAQ List)
Rating: Rate this question: Vote
what does #include<stdio.h> means actually?



Answer by doe
Submitted on 5/9/2004
Rating:  Rate this answer: Vote
what does #include<stdio.h> means actually?

 

Answer by vsriharsha
Submitted on 6/15/2004
Rating:  Rate this answer: Vote
#include<stdio.h>

means DUMP all the contents of the file stdio.h from the include directory at the beginning of this source file.

 

Answer by oppal
Submitted on 3/9/2005
Rating: Not yet rated Rate this answer: Vote
new aconite

 

Answer by N.Mohammad Rafi
Submitted on 3/29/2005
Rating: Not yet rated Rate this answer: Vote
In C Program we will be using some of the builtin functions like printf(),scanf() etc.The need of including a header file is that, the definition(Actual way of working) of the functions will be there in the header file.so while using the builtin function it is compulsory to include a header file.

 

Answer by N.Mohammad Rafi
Submitted on 3/29/2005
Rating: Not yet rated Rate this answer: Vote
In C Program we will be using some of the builtin functions like printf(),scanf() etc.The need of including a header file is that, the definition(Actual way of working) of the functions will be there in the header file.so while using the builtin function it is compulsory to include a header file.

 

Answer by Adams
Submitted on 7/13/2005
Rating: Not yet rated Rate this answer: Vote
stdio.h - standard buffered input/output

 

Answer by mike
Submitted on 12/5/2005
Rating: Not yet rated Rate this answer: Vote
supot ako

 

Answer by Ravindra Garg
Submitted on 12/16/2005
Rating: Not yet rated Rate this answer: Vote
The preprocessor replaces the line #include <stdio.h> with the system header file of that name, which declares the printf() function amongst other things. More precisely, the entire text of the file 'stdio.h' replaces the #include directive.

This can also be written using double quotes, e.g. #include "stdio.h". The angle brackets were originally used to indicate 'system' include files, and double quotes user-written include files, and it is good practice to retain this distinction. C compilers and programming environments all have a facility which allows the programmer to define where include files can be found. This can be introduced through a command line flag, which can be parameterized using a makefile, so that a different set of include files can be swapped in for different operating systems, for instance.


 

Answer by babyface
Submitted on 12/29/2005
Rating: Not yet rated Rate this answer: Vote
It means identify standard beffered area for input and output intergers.

 

Answer by UMOMA
Submitted on 2/18/2006
Rating: Not yet rated Rate this answer: Vote
it means starting a program. you must have
#include <stdio.h>
void main (void)
{
(comments)

{

 

Answer by Chance
Submitted on 3/16/2006
Rating: Not yet rated Rate this answer: Vote
It includes the suite of standard io functions, meaning the standard input and output functions, into your program.  Hence the name, "stdio" - standard i/o :)

 

Answer by jemhson
Submitted on 2/8/2007
Rating: Not yet rated Rate this answer: Vote
#include means to include a file in the directory then stdio.h stands for standard input output.header file........

 

Answer by Al-Mujahedeen
Submitted on 5/2/2007
Rating: Not yet rated Rate this answer: Vote
its stands for Standard Input Output.Header file

 

Your answer will be published for anyone to see and rate.  Your answer will not be displayed immediately.  If you'd like to get expert points and benefit from positive ratings, please create a new account or login into an existing account below.


Your name or nickname:
If you'd like to create a new account or access your existing account, put in your password here:
Your answer:

FAQS.ORG reserves the right to edit your answer as to improve its clarity.  By submitting your answer you authorize FAQS.ORG to publish your answer on the WWW without any restrictions. You agree to hold harmless and indemnify FAQS.ORG against any claims, costs, or damages resulting from publishing your answer.

 

FAQS.ORG makes no guarantees as to the accuracy of the posts. Each post is the personal opinion of the poster. These posts are not intended to substitute for medical, tax, legal, investment, accounting, or other professional advice. FAQS.ORG does not endorse any opinion or any product or service mentioned mentioned in these posts.

 

<< Back to: comp.lang.c Answers to Frequently Asked Questions (FAQ List)


[ Home  |  FAQ-Related Q&As  |  General Q&As  |  Answered Questions ]

© 2008 FAQS.ORG. All rights reserved.