下列程序的輸出結(jié)果是#includeint b=2;int func(int * a){b+= * a; return(b) ;}voi
下列程序的輸出結(jié)果是 #include<iostream.h> int b=2; int func(int * a) {b+= * a; return(b) ;} void main( ) { int a=2, res=2; res+=func(&a) ; cout < < res;}
A.4
B.6
C.8
D.10
正確答案:B解析:在函數(shù)體語句b+= * a;中的*是指針運(yùn)算符(也稱間接訪問運(yùn)算符) , * a就是main函數(shù)中a的值。
詞條內(nèi)容僅供參考,如果您需要解決具體問題
(尤其在法律、醫(yī)學(xué)等領(lǐng)域),建議您咨詢相關(guān)領(lǐng)域?qū)I(yè)人士。