Pointers store address of variables or a memory location.
// General syntax datatype *var_name; // An example pointer "ptr" that holds // address of an integer variable or holds // address of a memory whose value(s) can // be accessed as integer values through "ptr" int *ptr;
Using a Pointer:
To use pointers in C, we must understand below two operators.
- To access address of a variable to a pointer, we use the unary operator & (ampersand) that returns the address of that variable. For example &x gives us address of variable x.
// The output of this program can be different
// in different runs. Note that the program
// prints address of a variable and a variable
// can be assigned different address in different
// runs.
#include <stdio.h>
int
main()
{
int
x;
// Prints address of x
printf
(
"%p"
, &x);
return
0;
}
chevron_rightfilter_none - One more operator is unary * (Asterisk) which is used for two things :
- To declare a pointer variable: When a pointer variable is declared in C/C++, there must be a * before its name.
// C program to demonstrate declaration of
// pointer variables.
#include <stdio.h>
int
main()
{
int
x = 10;
// 1) Since there is * in declaration, ptr
// becomes a pointer varaible (a variable
// that stores address of another variable)
// 2) Since there is int before *, ptr is
// pointer to an integer type variable
int
*ptr;
// & operator before x is used to get address
// of x. The address of x is assigned to ptr.
ptr = &x;
return
0;
}
chevron_rightfilter_none - To access the value stored in the address we use the unary operator (*) that returns the value of the variable located at the address specified by its operand. This is also called Dereferencing.
C++
// C++ program to demonstrate use of * for pointers in C++
#include <iostream>
using
namespace
std;
int
main()
{
// A normal integer variable
int
Var = 10;
// A pointer variable that holds address of var.
int
*ptr = &Var;
// This line prints value at address stored in ptr.
// Value stored is value of variable "var"
cout <<
"Value of Var = "
<< *ptr << endl;
// The output of this line may be different in different
// runs even on same machine.
cout <<
"Address of Var = "
<< ptr << endl;
// We can also use ptr as lvalue (Left hand
// side of assignment)
*ptr = 20;
// Value at address is now 20
// This prints 20
cout <<
"After doing *ptr = 20, *ptr is "
<< *ptr << endl;
return
0;
}
// This code is contributed by
// shubhamsingh10
chevron_rightfilter_noneC
// C program to demonstrate use of * for pointers in C
#include <stdio.h>
int
main()
{
// A normal integer variable
int
Var = 10;
// A pointer variable that holds address of var.
int
*ptr = &Var;
// This line prints value at address stored in ptr.
// Value stored is value of variable "var"
printf
(
"Value of Var = %d\n"
, *ptr);
// The output of this line may be different in different
// runs even on same machine.
printf
(
"Address of Var = %p\n"
, ptr);
// We can also use ptr as lvalue (Left hand
// side of assignment)
*ptr = 20;
// Value at address is now 20
// This prints 20
printf
(
"After doing *ptr = 20, *ptr is %d\n"
, *ptr);
return
0;
}
chevron_rightfilter_none
Output :
Value of Var = 10 Address of Var = 0x7fffa057dd4 After doing *ptr = 20, *ptr is 20
- To declare a pointer variable: When a pointer variable is declared in C/C++, there must be a * before its name.
Pointer Expressions and Pointer Arithmetic
A limited set of arithmetic operations can be performed on pointers. A pointer may be:
- incremented ( ++ )
- decremented ( — )
- an integer may be added to a pointer ( + or += )
- an integer may be subtracted from a pointer ( – or -= )
Pointer arithmetic is meaningless unless performed on an array.
Note : Pointers contain addresses. Adding two addresses makes no sense, because there is no idea what it would point to. Subtracting two addresses lets you compute the offset between these two addresses.
// C++ program to illustrate Pointer Arithmetic // in C/C++ #include <bits/stdc++.h> // Driver program int main() { // Declare an array int v[3] = {10, 100, 200}; // Declare pointer variable int *ptr; // Assign the address of v[0] to ptr ptr = v; for ( int i = 0; i < 3; i++) { printf ( "Value of *ptr = %d\n" , *ptr); printf ( "Value of ptr = %p\n\n" , ptr); // Increment pointer ptr by 1 ptr++; } } |
Output:Value of *ptr = 10 Value of ptr = 0x7ffcae30c710 Value of *ptr = 100 Value of ptr = 0x7ffcae30c714 Value of *ptr = 200 Value of ptr = 0x7ffcae30c718
Array Name as Pointers
An array name acts like a pointer constant. The value of this pointer constant is the address of the first element.
For example, if we have an array named val then val and &val[0] can be used interchangeably.
// C++ program to illustrate Array Name as Pointers in C++ #include <bits/stdc++.h> using namespace std; void geeks() { // Declare an array int val[3] = { 5, 10, 15}; // Declare pointer variable int *ptr; // Assign address of val[0] to ptr. // We can use ptr=&val[0];(both are same) ptr = val ; cout << "Elements of the array are: " ; cout << ptr[0] << " " << ptr[1] << " " << ptr[2]; return ; } // Driver program int main() { geeks(); return 0; } |
Output: Elements of the array are: 5 10 15
Now if this ptr is sent to a function as an argument then the array val can be accessed in a similar fashion.
Pointers and Multidimensional Arrays
Consider pointer notation for the two-dimensional numeric arrays. consider the following declaration
int nums[2][3] = { {16, 18, 20}, {25, 26, 27} };
In general, nums[i][j] is equivalent to *(*(nums+i)+j)
Pointer Notation | Array Notation | Value |
---|---|---|
*(*nums) | nums[0][0] | 16 |
*(*nums + 1) | nums[0][1] | 18 |
*(*nums + 2) | nums[0][2] | 20 |
*(*(nums + 1)) | nums[1][0] | 25 |
*(*(nums + 1) + 1) | nums[1][1] | 26 |
*(*(nums + 1) + 2) | nums[1][2] | 27 |
Related Articles:
- How to pass a 2D array as a parameter in C?
- Multidimensional Pointer Arithmetic in C/C++
- Pointer vs Array
- Why C treats array parameters as pointers?
- What’s difference between “array” and “&array” for “int array[5]”?
Applications of pointers in C/C++.
Quizzes – Quiz on Pointer Basics , Quiz on Advanced Pointer
Reference:
https://www.ntu.edu.sg/home/ehchua/programming/cpp/cp4_PointerReference.html
This article is contributed by Abhirav Kariya. If you like GeeksforGeeks and would like to contribute, you can also write an article using contribute.geeksforgeeks.org or mail your article to contribute@geeksforgeeks.org. See your article appearing on the GeeksforGeeks main page and help other Geeks.
Please write comments if you find anything incorrect, or you want to share more information about the topic discussed above.
Attention reader! Don’t stop learning now. Get hold of all the important C++ Foundation and STL concepts with the C++ Foundation and STL courses at a student-friendly price and become industry ready.