C Programming - Complicated Declarations - Discussion
|
|
|
|
Read more:"Do not wait for leaders; do it alone, person to person."
- Mother Teresa
|
| 12. |
What do the following declaration signify?
char *scr;
|
| [A]. |
scr is a pointer to pointer variable. | | [B]. |
scr is a function pointer. | | [C]. |
scr is a pointer to char. | | [D]. |
scr is a member of function pointer. |
Answer: Option B
Explanation:
No answer description available for this question.
|
|
|