Question:
Suppose ted is a double variable. Declare a pointer that points to ted and use the pointer to display ted’s value.Answer:
double * pd = &ted;cout << *pd << "\n";
Find Tons of C++ Programming examples, projects with code. Also find books solutions.
0 Questions:
Post a Comment