问题 填空题

有如下程序:
#include <iostream>
using namespace std;
class PARENT

public:
PARENT() cout<<"PARENT";
;
class SON: public PARENT

public:
SON() cout<<"SON";
;
int main()

SON son;
PARENT *p;
p=&son;
return 0;

执行上面程序的输出是 【13】

答案

参考答案:PARENTSON

单项选择题
判断题