C++ : is what the meaning of #include<stdio.h>?


 
Thread Tools Search this Thread
Top Forums Programming C++ : is what the meaning of #include<stdio.h>?
# 1  
Old 02-04-2013
C++ : is what the meaning of #include<stdio.h>?

Hello Guys,

I'm new in programing line & just started from C++ programs but i don't know the meaning of #include<stdio.h> file....Guys tell me what's the working of this file in C++ program?? I'm confused...

Moderator's Comments:
Mod Comment Title changed: Please use a descriptive subject text, and not C++??
# 2  
Old 02-04-2013
Early in the compiling of a source, a preprocessor takes these # directives. #include basically puts all of stdio.h into the top of your code. the .h identifies it as a "header".

In C, before you use a function, the compiler must first know how it is suppose to be called.

For example, how many arguments and of what type? All this is in stdio.h, for the Standard I/O functions (things that print to the screen and such).

Usually, in C++ it's #include <iostream>, but we won't fault you for using C functions Smilie
# 3  
Old 02-04-2013
Why this is needed in C goes to the heart of how C compiles and links.

Including <stdio.h> tells the compiler that "somewhere, there exists a function named fgets, which takes arguments of char *, int, and FILE *". So the compiler will assume that function exists, not complain about it when you use it, and get the arguments right without guessing. It doesn't need the function itself yet.

Later, when it links your program, it assembles everything from pieces and when it hunts for this name, it will find it in the standard libc library.

Once it's done piecing all these bits together, what it gives you is a program that can be loaded in memory, which is the bit you actually run.
This User Gave Thanks to Corona688 For This Post:
# 4  
Old 02-04-2013
On another note the headers, on Gnu/Linux, are to be found at /usr/include. If you get an error you can do "man 3 printf" (if the function you use is printf) and the man page will tell you which header you need to include.

Last edited by tornow; 02-04-2013 at 01:56 PM.. Reason: strange formatting.
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Programming

Ignoring the stdio.h file in a C file

I am facing a problem in the below given code. int main() { printf("\nHello Geeks\n\n") ; return 0 ; } In the above mentioned code i left including "#include ". And if i compile and execute this piece of code, the output is printed as expected. But "#include " being the most important... (7 Replies)
Discussion started by: Raj 89
7 Replies

2. Solaris

fatal error: stdio.h: No such file or directory

Trying to compile a C program recievin this hello.c:1:19: fatal error: stdio.h: No such file or directory gcc is installed on the system. echo $PATH /usr/bin:/usr/sbin:/usr/gcc/4.5/include/c++/4.5.2/tr1 root@Sol11swtb01:/media/NO NAME/Programming/C/Testing# cd... (2 Replies)
Discussion started by: Fingerz
2 Replies

3. Programming

stdio.h not found on Solaris 11

Hi friends, I hope u r doing well. I have just installed Solaris 11, and it seems that solaris 11 doesn't come with all the packages, one has to do everything manually. I download gcc from sunfreeware.com and installed it. After setting up the path variable, I tried to compile the hello world... (4 Replies)
Discussion started by: gabam
4 Replies

4. UNIX for Dummies Questions & Answers

meaning of <<!

Hi all, I wanna know the meaning of the last word "<<! " sudo su - user <<! please help on this !!!! (1 Reply)
Discussion started by: sudharson
1 Replies

5. Shell Programming and Scripting

^$$ meaning

Hi , Can anyone please let me know whta the follwoing piece of code for ScriptName=${0##*/} if pgrep -f "$ScriptName" | grep -v "^$$\$" ; then echo `date`": Sctipt $ScritName is already runnig" exit fi Thnx a lot in advance Please use code tags when posting data and code... (8 Replies)
Discussion started by: Pratik4891
8 Replies

6. Programming

FILE structure - stdio.h

Hi All, I am new to linux and Programming. Inside the file stdio.h, there is a description about FILE structure. Which has many internal data members like _p, _r, _flags etc. I have written a sample code to find out the contents of the FILE structure. It opens a sample file ( FILE *fp ),... (5 Replies)
Discussion started by: nikunjbadjatya
5 Replies

7. Programming

stdio.h vs unistd.h I/O

Hi guys. To work with physical files, sockets, pipes, ... which library is good? stdio or unistd stdio.h functions perform buffering and rationally should be better than unistd.h routines. but i am wondering why all UNIX programming books use unistd.h routines for almost all types of I/O... (7 Replies)
Discussion started by: majid.merkava
7 Replies

8. Programming

Atomic Read and Write with stdio

hi guys. can we use fread and fwrite with pipes to write data more than PIPE_BUF atomically since they lock FILE object until I/O operation finish? (1 Reply)
Discussion started by: majid.merkava
1 Replies

9. Shell Programming and Scripting

meaning of !*

can someone please tell what !* means in shell syntax. Regards, (3 Replies)
Discussion started by: busyboy
3 Replies

10. UNIX for Dummies Questions & Answers

what the meaning of #*

can some one please tell the meaning of the second statement i.e n=${m#*=} i couldnt get the meaning of the #*= 1.) m="mohit=/c/main/issue" echo $m result ----------- mohit=/c/main/issue 2.) n=${m#*=} echo $n RESULT ------- /c/main/issue (1 Reply)
Discussion started by: narang.mohit
1 Replies
Login or Register to Ask a Question