InterviewSolution
Saved Bookmarks
| 1. |
In the below statement, ptr1 and ptr2 are uninitialized pointers to int i.e. they are pointing to some random address that may or may not be valid address.int* ptr1, ptr2;(A) TRUE(B) FALSE |
| Answer» | |