单项选择题

下面的程序输出的结果是( )。
#include <iostream>
using namespace std;
void main()
int a=2;
int &c=a;
a++;
cout<<c;

A.2
B.3
C.4
D.*a