- 论坛徽章:
- 0
|
TC++PL 5.9
1. (*1) Write declarations for the following: a pointer to a character, an array of 10 integers, a reference to an array of 10 integers, a pointer to an array of character strings, a pointer to a pointer to a character, a constant integer, a pointer to a constant integer, and a constant pointer to an integer. Initialize each one.
3. (*1) Use type def to define the types unsigned char , const unsigned char , pointer to integer, pointer to pointer to char , pointer to arrays of char , array of 7 pointers to int , pointer to an array of 7 pointers to int , and array of 8 arrays of 7 pointers to int .
其中,红色部分不会做!
哪位帮帮忙!谢谢!
1.
a reference to an array of 10 integers(一个到包含10个整数的数组的引用)
a pointer to an array of character strings(一个到字符串的数组的指针)
3.
pointer to arrays of char
pointer to an array of 7 pointers to int
array of 8 arrays of 7 pointers to int |
|