what this code means

what are these both code means:

#include<stdio.h>
#include<conio.h>
Put the code you need help with here.
[/code]


thx
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
#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.