#include
#include
using namespace std;
int main() {
char* pC;
pC = new char;
*pC = 'x';
return 0; }
// Line 1
// 2
// 3
1) Which of the following best explains the situation after Line 1 has been executed?
a) pCdoesnothaveatarget, and pCdoesnothaveaknownvalue.
b) pCdoesnothaveatarget, butpCdoeshaveaknownvalue.
c) pChasatarget,butitstargetdoesnothaveaknownvalue.
d) pChasatarget,anditstargetdoeshaveaknownvalue.
e) None of these