InterviewSolution
Saved Bookmarks
| 1. |
Which of the following is not a correct declaration statement in C++?1). int *p, *q;r;2). int p, *ptr = 0;3). int p; double *fp = &p;4). int *ptr= 0, p; |
| Answer» | |