Skip to content

Commit 2f533c6

Browse files
authored
Add: pointers in int *aptr[10] are to int values
1 parent e419575 commit 2f533c6

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

docs/c-language/declarators-and-variable-declarations.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,8 @@ int list[20]; // Declares an array of 20 int values named list
6767
char *cp; // Declares a pointer to a char value
6868
double func( void ); // Declares a function named func, with no
6969
// arguments, that returns a double value
70-
int *aptr[10] // Declares an array of 10 pointers
70+
int *aptr[10] // Declares an array of 10 pointers each of which
71+
// is a pointer to an int value
7172
```
7273

7374
**Microsoft Specific**

0 commit comments

Comments
 (0)