
c语言英文指针如何称呼
用户关注问题
When discussing C programming, what is the correct English term for variables that store memory addresses?
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.
How are pointer data types described in English when programming with the C language?
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.
When explaining C pointers in English, what terms and expressions clearly describe their function and usage?
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.