Types of Pointers in C

Ratings:
(4.7)
Views:14352
Banner-Img
  • Share this blog:

Pointers in C

Pointers in C are very easy to learn a few tasks in C language are done by using pointers. And some tasks like dynamic memory allocation done only by using pointers. So it is essential to learn pointers. POINTER is a variable that stores the address of the other variable. A pointer is also used to refer to a pointer function. And pointer can be incremented or decremented that is if the pointer is incremented then it points to the next and if the pointer is decremented it points to the previous memory location. The goal of the pointer is to save memory space and perform faster execution. And the size of the pointer in C is 8 bytes but on a 32-bit machine, they take up to 4 bytes.

How does Pointer Works?

  • If we declare a variable Y of type Integer(Int) then Y will actually store the value.

         Int Y= 1;

         Y is equal to one now.

  • But, every variable has both value and address, and that address can be retrieved by putting an ampersand before the variable name like this.

         "&Y" 

  • If you are willing to print an address of a variable that address may be a random number and that random number will be different whenever you run your program. which means the same program may give different outputs.

Example:

#include<stdio.h>

int main()

{

int Y=1;

printf(“%d”, &Y);

return 0;

}

Output: 123756948 and if you run the same code for the second time the output may be different.

In simple terms, variable store values and pointers store the address of the variable.

 

Pointer Declaration:

Like variables, pointers should be declared before using it in the program. We can name pointers anything as long as they obey C’s naming rules.

Syntax: Data_type * pointer_variable_name;

Example: int*a;

 

Initializing a Pointer:

After declaring a pointer, we have to initialize the pointer with the standard variable address.

If pointers are not initialized then there may be a problem in the output.

Syntax: pointer= &variable;

Example: p= &a;

Types of Pointers in C

Null Pointer:

A pointer that points to nothing is called a Null pointer. Some advantages of Null pointer are:

  • We can initialize a pointer variable when that pointer variable is not assigned any actual memory address.

  • We can pass a null pointer to a function argument when we are not willing to pass any actual memory address.

Example 1:

int * aInt = NULL;

Example 2:

int fun(int *ptr)
{ 
     return 15;
}
fun(NULL);

Example 3:

if (aINT != NULL)

{ //some code}

else

{//some code}

 

Related Article: Characteristics of C Language

 

Void Pointer:

The void pointer within C is a pointer that is not allied with any data types. This points to some data location within the storage means points to that address of variables. It is also known as a general-purpose pointer. In C, malloc() and calloc() functions return void * or generic pointers.

Example:

int x= 10;

char y= ‘a’;

void *p= &x //void pointer contains address of int x

p = &y //void pointer holds of char y

 

Wild Pointer:

Pointers that are not initialized are called wild pointers. This pointer may be initialized to a non-NULL garbage value which may not be a valid address. 

Example:

int main()

{

int *p; // wild pointer

*p= 10;

}

Remember if a pointer p points to any known variable, 

then it is not a wild pointer. In the below program p is a wild pointer until it points to x.

int main()

{

int = *p; // wild pointer

int x= 20;

p= &x // p is not a wild pointer now

}
Also, Check out our blog on C Tutorial

 

Dangling Pointer:

A pointer that points to a memory location that has been deleted is called a dangling pointer. 

Example 1:

Deallocation of memory:

#include<stdio.h>

#include<stdlib.h>

int main()

{

   int *ptr = (int *)malloc(sizeof(int));

   free(ptr);

   ptr = NULL;

}

Example 2:

Function call:

#include<stdio.h>

int *fun()

{

   int y= 15;

   return &y

}

int main()

{

    int *p = func()

    fflush(stdin)

printf(“%d”, *p);

return 0;

}

 

Complex Pointer:

Before knowing how to read complex pointers then you should first know associativity and precedence.

Associativity: Order operators of equal precedence within an expression are employed.

Precedence: Operator precedence describes the order in which C reads expressions.

Operator

Precedence

Associative

(),[]

1

Left to Right

*,Identifier

2

Right to Left

Data Type

3

  • (): this operator is used to declare and define the function.
  • []: this is an array subscript operator.

  • *: this is a pointer operator.

  • Identifier: this is the name of a pointer.

  • Data type: this is the type of variable.  

Example:

int (*p)(int (*)[3], int (*)void)) 

 

Near Pointer:

  • Near pointer means a pointer that is utilized to bit address of up to 16 bits within a given section of that computer memory which is 16 bit enabled.
  • It can only access data of the small size of about 64 kb within a given period, which is the main disadvantage of this type of pointer.

Example:

#include<stdio.h>

int main()

{

   int a= 300;

   int near* ptr;

   ptr= &a;

   printf(“%d”, size of ptr);

   return 0;

}

Output: 3

 

Far Pointer:

  • A far pointer is typically 32 bit which can access memory outside that current segment. 
  • To utilize the far pointer, the compiler allows a segment register to save segment address, then another register to save offset inside the current segment.

Example: 

#include<stdio.h>

int main()

{

  int a= 10;

  int far *ptr;

  ptr=&a;

  print(“%d”, sizeof ptr);

  return 0;

}

 

Huge Pointer:

  • Same as far pointer huge pointer is also typically 32 bit which can access outside the segment.
  • A far pointer that is fixed and hence that part of that sector within which they are located cannot be changed in any way; huge pointers can be.

Example:

#include<stdio.h>

int main()

{

   char huge *far *a;

   printf(“%d%d%d”, sizeof(a), size(*a), sizeof(**a));

   return 0;

}

Output: 4 4 1.

Struct Pointer:

  • Pointers can be utilized to refer to a struct by its address. This helps pass structs to a function.
  • The pointer can be dereferenced by the * operator.
  • The -> operator dereferences the pointer to the left operand and later accesses the value of a member of the right operand.

Advantages of pointers in C:

  • Pointers permit the management of structures that are allocated memory dynamically.
  • Pointers make it possible to pass the address of the structure rather than the entire structure to the functions. 

 

For an in-depth understanding of Pointers click on:

You liked the article?

Like : 10

Vote for difficulty

Current difficulty (Avg): Medium

Recommended Courses

1/15

About Author
Authorlogo
Name
TekSlate
Author Bio

TekSlate is the best online training provider in delivering world-class IT skills to individuals and corporates from all parts of the globe. We are proven experts in accumulating every need of an IT skills upgrade aspirant and have delivered excellent services. We aim to bring you all the essentials to learn and master new technologies in the market with our articles, blogs, and videos. Build your career success with us, enhancing most in-demand skills in the market.