下面程序的运行结果是( ).#include;using namespace std;int main ( ){ float a=1,b=2,c; float *p1=&a,*p2; p2=&b; c= * p1 + *p2; cout
A、1
B、2
C、a
D、b