cplusplus
.com
TUTORIALS
REFERENCE
ARTICLES
FORUM
C++
Tutorials
Reference
Articles
Forum
Forum
Beginners
Windows Programming
UNIX/Linux Programming
General C++ Programming
Lounge
Jobs
Forum
Beginners
what this code means
what this code means
Dec 21, 2013 at 12:53pm UTC
hans2311
(9)
what are these both code means:
#include<stdio.h>
#include<conio.h>
Put the code you need help with here.
[/code]
thx
Dec 21, 2013 at 2:37pm UTC
aish96
(65)
stdio and conio are header files. They aren't present already in the compiler so they need to be called.
so you
"include
the files.
See the following page for more info:
http://www.cplusplus.com/articles/Gw6AC542/
Last edited on
Dec 21, 2013 at 2:41pm UTC
Dec 21, 2013 at 2:40pm UTC
AbstractionAnon
(6954)
#include tells the compiler to read input from the specified file.
You can find yout what's included in <stdio.h> here:
http://www.cplusplus.com/reference/cstdio/
<conio.h> is not part of the C standard. For those compilers that supply it, <conio.h> provides functions for console I/O. Check your compiler documentation for specifics.
Topic archived. No new replies allowed.