ofstream outf( “ d:\\tem.dat ” ,ios::trunc); outf<< “ look out! ” ; outf.close( ); ifsteam inf( “ d:\\tem.dat ” ); char k[20]; inf>>k; count<inf.close( ); } 23. 下面的程序有一处错误,请用下横线标出错误所在行并改正错误。 # include class test{ public; static int x; }; int x=20;// 对类成员初始化 void main ( ) { cout<}
|