Inline functionIn the C and C++ programming languages, an inline function is one qualified with the keyword inline; this serves two purposes: It serves as a compiler directive that suggests (but does not require) that the compiler substitute the body of the function inline by performing inline expansion, i.e. by inserting the function code at the address of each function call, thereby saving the overhead of a function call. In this respect it is analogous to the register storage class specifier, which similarly provides an optimization hint.
End-of-fileEnd-of-file (littéralement « fin de fichier » en anglais), couramment abrégé en EOF, est une condition dans un système d'exploitation informatique indiquant qu'aucune donnée supplémentaire ne peut être lue depuis une source de données. La source de données est d'habitude appelée un fichier, ou un flux. Dans le langage de programmation C, ou plus exactement, dans sa bibliothèque standard, les fonctions d'accès fichier et autres flux d'entrées-sorties peuvent retourner une valeur égale à la valeur symbolique EOF afin d'indiquer que la condition end-of-file est survenue.
Input/output (C++)In the C++ programming language, input/output library refers to a family of class templates and supporting functions in the C++ Standard Library that implement stream-based input/output capabilities. It is an object-oriented alternative to C's -based streams from the C standard library. Bjarne Stroustrup, the creator of C++, wrote the first version of the stream I/O library in 1984, as a type-safe and extensible alternative to .