Question from the C++ test

What is the value of a pointer to a function that has not been defined?

Hard

What would be the output of the following code snippet?

char *p = “Hello World!!”;
cout << (void*) p << endl;
Author: Abha AgrawaStatus: PublishedQuestion passed 418 times
Edit
0
Community Evaluations
developer avatar
Fafun
02/03/2024
missing ';' at the first line