Enum in C: Enum is a keyword, by using this keyword we can create a sequence of integer constant value. Generally, by using enum, we can create a user-defined data type of integer. The size of enumerator datatype is 2B & the range from -32768 to 32767. It is possibleContinue Reading

Command Line Arguments in C Language: It is a procedure of passing the arguments to the main function from the command prompt. By using command-line arguments, we can create user-defined commands. In the implementation, when we were required to develop an application for the DOS operating system then recommended goingContinue Reading

What is a Null Pointer? A Null Pointer in C Programming Language is a pointer that does not point to any memory location i.e. it does not hold the address of any variables. It only stores the base address of the segment. That means the null pointer in C storesContinue Reading

Character Pointer in C Language: A pointer may be a special memory location that’s capable of holding the address of another memory cell. So a personality pointer may be a pointer that will point to any location holding character only. Character array is employed to store characters in Contiguous MemoryContinue Reading