You have already completed these exercises!
Do you want to take them again?
You completed the C++ Dereference Exercises from W3Schools.com
Share on:
What does the following code output?string food = "Burger";string* ptr = &food;cout << *ptr;
string food = "Burger";string* ptr = &food;cout << *ptr;