Information AboutStdio.h |
| CATEGORIES ABOUT STDIO.H | |
| stdio.h | |
| ansi c standard | |
| c headersstdio.h | |
| ansi c standard | |
| c headers | |
| c standard library | |
|
stdio.h, which stands for "standard input-output header," is the library in C Programming Language which contain functions for manipulating standard Input and Output . It contains Macro definitions, constants, and declarations of functions and types used for various input and output operations. It is compatible with C++ and is more widely known as the cstdio library in C++.stdio.h is extremely popular, since as a part of the C Standard Library it is guaranteed to work on any platform which supports C. Applications on a particular platform might, however, have reasons to use the platform's I/O routines, rather than the stdio.h routines.EXAMPLE USAGE All functions in C and its derivatives are included from Header File s. Similarly, Programmer s have to include the stdio.h header into the source code to utilize the functions. This is the origin where the library name came from.#include int main() { while (!feof(stdin)) putchar(getchar()); return 0; } The above Program reads all input from the console and echo it onto the console, line by line. MEMBERS Member functions of the stdio.h library can generally be divided into two categories: the functions for file manipulation and the functions for input-output manipulation.File manipulation functions Input-output manipulation functions Member constants Member constants of the stdio.h library include:
Types
|
|
|