Table of Contents
Type of address
Using pointers
Structures and pointers
Home Backend Development C#.Net Tutorial The latest summary of matters related to the understanding and use of pointers in C language

The latest summary of matters related to the understanding and use of pointers in C language

Jul 26, 2018 pm 06:11 PM
c c# c++ struct

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;     /* 一个字符型的指针 */
Copy after login

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);
Copy after login

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);
Copy after login

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);
Copy after login

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);//结构体自身用.
Copy after login

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!

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

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Two Point Museum: All Exhibits And Where To Find Them
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Active Directory with C# Active Directory with C# Sep 03, 2024 pm 03:33 PM

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

Random Number Generator in C# Random Number Generator in C# Sep 03, 2024 pm 03:34 PM

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

Patterns in C# Patterns in C# Sep 03, 2024 pm 03:33 PM

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.

Prime Numbers in C# Prime Numbers in C# Sep 03, 2024 pm 03:35 PM

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

Factorial in C# Factorial in C# Sep 03, 2024 pm 03:34 PM

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

Why does an error occur when installing an extension using PECL in a Docker environment? How to solve it? Why does an error occur when installing an extension using PECL in a Docker environment? How to solve it? Apr 01, 2025 pm 03:06 PM

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

Swapping in C# Swapping in C# Sep 03, 2024 pm 03:34 PM

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

C# Design Pattern Interview Questions C# Design Pattern Interview Questions Sep 03, 2024 pm 03:35 PM

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

See all articles