pointer in c languageThe Pointers in c language programming is a variable that points to the address of another variable. The Pointer in the C language is used to indicate the memory randomly for example at the run time. pointer variable strength be comfortableness to the any of data type such as int for digits, float for decimal, char,double character, short etc.The computer science the programming language object, whose value refers to another values stored elsewhere in computer memory using its memory address. A pointer references the location in the memory, and achieving the value stored at that location is known as dereferencing pointer. The Pointer Syntax:data type*var name for example int *p; char *p;. KEY POINTS TO REMEMBER The POINTERS IN The C
Types of pointersDifferent types of pointers in c language that are as follows.
Huge pointerHuge pointer access whole the residence memory of the RAM for example which can access all sixteenth segments is known as a huge pointer. The huge pointer takes or reserves 32 bits or 4 byte in memory. illustration of Huge Pointer in C Programming
Near Pointerpointer which can indicate or point the only 64 KB (kilo byte ) of data piece is known as near pointer. The pointer is near pointer does not achieved beyond data piece like graphics video memory or text video memory, etc. The Size of the near pointer is 2 byte.
Far pointerFar pointer can point the whole the residence memory of RAM, for example which can be access all sixteenth piece is known as far pointer.The Size of far pointer is 4 byte (32 bit) of data one bit can store one character of data in one byte there are 8 bits which can store 8 character of data or alphabets. Code example of Far Pointer in C Programming
Generic PointersThe generic pointer is very useful when we are wanted to point any type of data the generic pointer is used to point the data.When the variable is initialized or declared as being the pointer to type (main functions of c language like ) void is known as the generic pointer. Since we cannot have the variable of type void, Generic pointer will not point to the any data and therefore cannot be dereferenced. It is currently the pointer though, to use it we just have to cast it to next type of the pointer first. Code example of Generic Pointer in C Programming
Wild PointerThe Pointer in the C language that has not initialized till its first use is known as the wild pointer. the wild pointer indicates to some random memory location in the c language where we want to point the data. Code example of Wild Pointer in C Programming
NULL PointersThe Pointer which is declared with the NULL value is known as the NULL pointer,Null pointer in the pointer is the pointer which is pointing nothing.The Null pointer points the base address of any segment.The Null pointer is the micro constant which in prescribed in the following header files which are , stdio.h,etc.
|
MORE ABOUT POINTERS |
---|
Void Pointers |
Near Pointers |
Far Pointers |
Huge Pointers |
Function Pointers |
Wild Pointers |
Null Pointers |
Dangling Pointers |