C Programming - Complicated Declarations - Discussion

Discussion Forum : Complicated Declarations - General Questions (Q.No. 12)
12.
What do the following declaration signify?
char *scr;
scr is a pointer to pointer variable.
scr is a function pointer.
scr is a pointer to char.
scr is a member of function pointer.
Answer: Option
Explanation:
No answer description is available. Let's discuss.
Discussion:
2 comments Page 1 of 1.

Ashwini said:   6 years ago
What is meant by scr?

Nitin said:   1 decade ago
scr is pointer to char because it point to the memory address of char value.

Post your comments here:

Your comments will be displayed after verification.