Home > Backend Development > C++ > body text

Double pointer (pointer to pointer) in C language

WBOY
Release: 2023-09-10 12:09:03
forward
557 people have browsed it

Double pointer (pointer to pointer) in C language

Pointers are used to store the address of variables. So when we define a pointer to pointer, the first pointer is used to store the address of the second pointer. Hence it is called double pointer.

Algorithm

Begin
   Declare v of the integer datatype.
      Initialize v = 76.
   Declare a pointer p1 of the integer datatype.
   Declare another double pointer p2 of the integer datatype.
   Initialize p1 as the pointer to variable v.
   Initialize p2 as the pointer to variable p1.
   Print “Value of v”.
      Print the value of variable v.
   Print “Value of v using single pointer”.
      Print the value of pointer p1.
   Print “Value of v using double pointer”.
      Print the value of double pointer p2.
End.
Copy after login

A simple program to understand double pointers:

Example

int main() {
   int v = 76;
   int *p1;
   int **p2;
   p1 = &v;
   p2 = &p1;
   printf("Value of v = %d\n", v);
   printf("Value of v using single pointer = %d\n", *p1 );
   printf("Value of v using double pointer = %d\n", **p2);
   return 0;
}
Copy after login

Output

Value of v = 76
Value of v using single pointer = 76
Value of v using double pointer = 76
Copy after login

The above is the detailed content of Double pointer (pointer to pointer) in C language. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:tutorialspoint.com
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!