Вы находитесь на странице: 1из 2

DOCUMENTATION

This project required a lot of organized programming. Coordinating more than 30 functions and keeping in mind all the logics and loops was a tough task but it helped us in many ways. The header files that we used in this program are as follows: iostream.h The manipulators in this library affect the format of stream operations fstream.h Declares the C++ classes that support file I/O. conio.h This header declares several useful library functions for performing "console input and output" from a program. Most C compilers that target DOS, Windows, Phar lap, DOSX, OSx, or Win32 have this header and supply the associated library functions in the default C library. Most C compilers that target UNIX and LINUX do not have this header and do not supply the library functions. Some embedded systems are using a conio-compatible library. string.h This library enables you to manipulate C strings that end in the char '\0', the null char. Unless noted otherwise, these functions return a pointer to the resulting string in addition to modifying an appropriate argument. The argument ch is a character, n is an integer, and the other arguments are strings, which usually means they are names of a char

array, but can be string constants in some cases. For example, strcmp("Hello", "Goodbye"); stdlib.h stdlib.h is the header of the general purpose standard library of C programming Language which includes functions involving memory allocation, process control, conversions and others. It is compatible with C++ and is known as cstdlib in C++. The name "stdlib" stands for "standard library". stdio.h stdio.h, which stands for "standard input/output header", is the header in the standard library that contains macro definitions, constants, and declarations of functions and types used for various standard input and output operations. C++, for compatibility reasons, includes stdio.h as well as an essentially equivalent header, cstdio, which declares the stdio.h functions and types within the std namespace. ctype.h Most functions in this library classify a given ASCII character as a letter, a digit, and so on. Two other functions convert letters between uppercase and lowercase. process.h process.h is a C header file which contains function declarations and macros used in working with threads and processes. Neither the header file nor the functions are defined by either the ANSI/ISO C standard or by POSIX. Most C compilers that target DOS, Windows, Win32, OS/2 Novell Net Ware or DOS extenders supply this header and the library functions in their C library.

Вам также может понравиться