Saved Bookmarks
| 1. |
If ‘p’ is pointer to the variable ‘x’, which of the following statement are correct. (a) ‘p’ and ‘x’ may be of different data types (b) if ‘p’ points to ‘x’, then ‘x’ also points to ‘p’ (c) the statement x = &p is valid (d) p will give the value of the variable ‘x’ |
|
Answer» (d) p will give the value of the variable ‘x’ |
|