c语言英文指针如何称呼

c语言英文指针如何称呼

作者:Elara发布时间:2026-03-04阅读时长:0 分钟阅读次数:2

用户关注问题

Q
How do you refer to pointers in C language in English?

When discussing C programming, what is the correct English term for variables that store memory addresses?

A

Terminology for Pointers in C Language

In C programming, variables that hold memory addresses are called 'pointers'. They are typically referred to simply as pointers or pointer variables.

Q
What is the standard English expression for pointer types in C?

How are pointer data types described in English when programming with the C language?

A

Describing Pointer Types in English in C

Pointer types in C are generally described as, for example, 'int pointer' for pointers to integers or 'char pointer' for pointers to characters. The suffix 'pointer' indicates the variable holds an address of the specified data type.

Q
How is the concept of pointer variables explained in English in C programming contexts?

When explaining C pointers in English, what terms and expressions clearly describe their function and usage?

A

Explaining Pointers in English for C Programming

Pointers in C are described as variables that store the address of another variable. English explanations focus on terms like 'memory address', 'dereferencing', and 'pointer arithmetic' to elucidate their role.