有函数原型void fun7(int*);在下列选项中,正确的调用是()
A:double x=2.17;fun7(&x);
B:int a=15;fun7(a*3.14 );
C:int b=100;fun7(&b);
D:fun7(256);
出自:计算机科学