- 1
Look at the following code segment and decide which options is/are correct..
#include<iostream> using namespace std; int main() { char m = 4; const char n=5; const char *p= &n; char * const q = &m; //.....options are.. a. n = 6; b. *p = 7; c. p = &m; d. *q = 8;
2 Answers
0
means... it's a... question on assignment.. nptel
- 1
none? or..?