If you had the following code: int x = 23; int *y; y = &x;
The instruction y++; does what?
Answer Posted / anu
Then y will point to next memory location.
If we are using (*y)++ will increment value to 24.
| Is This Answer Correct ? | 4 Yes | 5 No |
Post New Answer View All Answers
Write about the scope resolution operator?
Define token in c++.
Is eclipse good for c++?
What is difference between class and function?
Is multimap sorted c++?
What is the exit function in c++?
Explain how we implement exception handling in c++?
Define a pointer to a data member of the type pointer to pointer?
Can we change the basic meaning of an operator in c++?
What are the uses of c++ in the real world?
Is c++ the best programming language?
Is swift better than c++?
Comment on assignment operator in c++.
How should a contructor handle a failure?
What is the best c++ book?