The * in C language is the representation symbol of pointers and files. The definition expression of pointer array [int *c_zhi[100]] indicates the existence of 100 pointer array elements; [*c[2]] It is a pointer array, which is a transformation of an array, and its essence is an array.
In C language * is the symbol representing pointers and files.
#2. In C language, c[ ] is the expression of exponential array.
#3. The definition expression of pointer array: int *c_zhi[100], indicating the existence of 100 pointer array elements.
4. *c[2] is a pointer array, so in an essential sense, it is a transformation of an array, and its essence is an array.
5, (*c2)[100]=&c, then the array pointer is essentially a pointer, and its function is only to arrange a space for the array An address can be said to be a data record.
Related learning recommendations: C video tutorial
The above is the detailed content of What does * mean in c language. For more information, please follow other related articles on the PHP Chinese website!