赞题库-背景图
单项选择题

What's the output of the following code?
float * p = new float[4];
p[0] = 1.1;
p[1] = 2.2;
p[2] = 3.3;
p[3] = 4.4;
p += 2;
cout << p[0] << endl

A. 1.1
B. 2.2
C. 3.3
D. 4.4