Error Handling
C programming itself do not provide a direct way to deal with errors in the program but error handling in…
Be prepared for Technical Interview Round
C programming itself do not provide a direct way to deal with errors in the program but error handling in…
The work of pre-processor in C is to instruct the compiler and perform the required pre-processing before the actual compilation…
There is a reserved keyword typedef used in C programming language to give an alternative meaningful name to existing data…
A set of pre defined library functions and macro definitions are contained in C header files. The extension .h is…
What is bit field? A data structure in C programming language terminology that can be used to allocate memory space…
Union Definition : The special data type allowing users to store different types of data in the same memory location…
STRUCTURES The keyword struct is used to create structures in C. Structures are quite similar to arrays. It is a…
What is string? String is a set of alphanumeric characters. A group of characters enclosed within a pair of opening…
Input Function In C The function scanf( ) is used to take input from the user to perform the desired…
A file can be a text file or a binary file. File basically represents sequence of bytes. Creating and Opening…