(Total 18 questions) (Time spent 0:0)
1. Write the output of the following:
char *mychar; //points to memory location 1000
short *myshort; //points to memory location 2000
long *mylong; //points to memory location 3000
mychar++;
++myshort;
mylong++;
cout << mychar << myshort << mylong;
View Test Answer