Error Handling
C programming itself do not provide a direct way to deal with errors in the program but error handling in…
Pre-Processors in C
The work of pre-processor in C is to instruct the compiler and perform the required pre-processing before the actual compilation…
typedef in C
There is a reserved keyword typedef used in C programming language to give an alternative meaningful name to existing data…
Header Files in C
A set of pre defined library functions and macro definitions are contained in C header files. The extension .h is…
Bit fields in C
What is bit field? A data structure in C programming language terminology that can be used to allocate memory space…
Unions in C
Union Definition : The special data type allowing users to store different types of data in the same memory location…
Structures in C
STRUCTURES The keyword struct is used to create structures in C. Structures are quite similar to arrays. It is a…
Strings in C
What is string? String is a set of alphanumeric characters. A group of characters enclosed within a pair of opening…
Inputs & Outputs in C
Input Function In C The function scanf( ) is used to take input from the user to perform the desired…
File i/o in C++
C++ offers the following classes to execute output and input of characters to/from the file system: ofstream: Stream class to…