单项选择题

有如下程序:
#include<iostream>
using namespace std;
class AA
public;
AA()cout<<’1’;

class BB:public AA
int k;
public:
BB():k(0)cout<<’12’;
BB(int n):k(n)cout<<’3’;

int main()
BB b(4),c;
return 0;

运行时的输出结果是( )。

A.1312
B.132
C.32
D.1412