


The latest summary of matters related to the understanding and use of pointers in C language
Definition: A pointer is a variable whose value is the address of another variable. The address represents the location in memory. What needs to be remembered is that the array variable itself is a pointer.
Type of address
Addresses have types. Doesn’t it feel strange? Doesn’t a pointer represent an address? Does an address also have a type? Look at an example:
int *ip; /* 一个整型的指针 */ double *dp; /* 一个 double 型的指针 */ float *fp; /* 一个浮点型的指针 */ char *ch; /* 一个字符型的指针 */
In fact, a pointer is always just a hexadecimal number representing an address. The so-called type refers to the type of the variable pointed by the pointer.
Using pointers
How to define a pointer, you should know from the previous example, then how to print the hexadecimal address and or the data pointed to by the pointer:
//通过&运算符获取了i的地址并保存到intP中去 int *intP; = &i; printf("intP存储的地址为:%p,存储的地址指向的数据为:%d\n", intP, *intP);
Pointers can perform operations: , --, , -
In addition, pointers can also be compared using relational operators, such as ==, < and >
int intArr[] = {1, 2, 3, 4, 5, 6, 7, 8, 9, 10}; //先定义一个指针执行数组第一个元素 int *intArrP = &intArr[0]; printf("此时intArrP存储的地址为:%p,数据为:%d\n", intArrP, *intArrP); //自增一下看看结果(每增加一次,它都将指向下一个整数位置) intArrP++; printf("自增以后intArrP存储的地址为:%p,数据为:%d\n", intArrP, *intArrP);
Pointers You can also point to pointers
int data = 5201314; int *p1 = &data; int **p2 = &p1; printf("%d\n", data); //都是5201314 printf("%d\n", *p1); printf("%d\n", **p2);
Structures and pointers
The use of pointers in structures is a little special, mainly because of the particularity of the structure itself, and you want to use a value in the structure , generally divided into two situations: the structure itself and the pointer pointing to the structure. See the following example for details:
struct Node { int val; }; //先建立一个结构体数据 struct Node node; node.val = 1; struct Node *nodeP; //创建一个指向刚刚的结构体的指针 nodeP = &node; printf("%d\n", nodeP->val);//指向结构体的指针用-> printf("%d\n", node.val);//结构体自身用.
Related articles:
The above is the detailed content of The latest summary of matters related to the understanding and use of pointers in C language. For more information, please follow other related articles on the PHP Chinese website!

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

Guide to Active Directory with C#. Here we discuss the introduction and how Active Directory works in C# along with the syntax and example.

Guide to Random Number Generator in C#. Here we discuss how Random Number Generator work, concept of pseudo-random and secure numbers.

Guide to Patterns in C#. Here we discuss the introduction and top 3 types of Patterns in C# along with its examples and code implementation.

Guide to Prime Numbers in C#. Here we discuss the introduction and examples of prime numbers in c# along with code implementation.

Guide to Factorial in C#. Here we discuss the introduction to factorial in c# along with different examples and code implementation.

Causes and solutions for errors when using PECL to install extensions in Docker environment When using Docker environment, we often encounter some headaches...

Guide to Swapping in C#. Here we discuss the Introduction, Swapping 2 Number, Swapping 3 numbers with examples, codes, and outputs

In above article, we have kept the most asked C# Design Pattern Interview Questions with their detailed answers to it.So that you can crack the interview
