stdio stands for Standard Input and Output if I'm not misstaken. Its the functions you use for input and output, you could of course code functions to do the same thing if you want.
2006-12-26 23:01:19
·
answer #1
·
answered by toxisoft 4
·
0⤊
0⤋
The #include header file in 'c' language is just very necessary because that is where the input and output routines are used by C language.
If you can build your own programs that will avoid #include then its ok, but most programmers do not want to go through that stress. That file behaves as if it's a built-in program file just like BASIC and FORTRAN routines have already built-in instruction set. C language has few keywords (32), and that makes it very powerful. Some of these keywords are all combined in a special way to form your file 'stdio.h', and that makes it very important, but not absoultely (do-or-die) compulsory that you must use it.
Some other members where printf() and scaf() belong are:
gets(), put(), rename(), setbuf(), sprintf(), sscanf(), ungetc(), vfprintf(), unlink(), fclose(), fgetc(), fread(), fputs(), fopen(), freopen(), fwrite(), fseek(), and so on.
2006-12-26 23:44:05
·
answer #2
·
answered by Kenny2 3
·
0⤊
0⤋
stdio.h,is an inbuilt library function in c.when overcome by compiler & during run ,calls the library routine for std i/o .for instance,u are able 2 use printf,scanf etc in ur program wit the help of stdio.b'cos printf is to prit the o/p to screen & scanf to get i/p frm user.withot the statement u'l get a compile time error as missing library fn: or unknwn exprn.//r/y conio.h enables getch,getchar lik functions 2 work.
2006-12-27 06:26:32
·
answer #3
·
answered by nik 1
·
0⤊
0⤋
it has predefined functions in it.stdio is standard input output header file.classes and functions are defined in this header file
2006-12-26 23:01:39
·
answer #4
·
answered by honey2007 1
·
0⤊
0⤋
#includeis stands for standard input output function.
2006-12-26 23:09:59
·
answer #5
·
answered by Rosh 2
·
0⤊
0⤋