( 16 )在下列枚举符号中,用来表示 “ 相对于当前位置 ” 文件定位方式的是A ) ios_base::curB ) ios_base::begC ) ios_base::outD ) ios_base::end
( 16 )在下列枚举符号中,用来表示 “ 相对于当前位置 ” 文件定位方式的是
A ) ios_base::cur
B ) ios_base::beg
C ) ios_base::out
D ) ios_base::end
相关考题:
已知outfile是一个输出流对象,要想将outfile的文件指针定位到当前位置之前321字节处,正确的函数调用语句是A.outfile.seekp(321,ios_base::cur);B.outfile.seekp(321,ios_base::bge);C.outfile.seekp(-321,ios_base::beg);D.outfile.seekp(-321,ios_base::cur);
函数ftell的作用是( ) A.取得当前文件指针的位置,该位置为相对于文件开头的位移量表示B.取得当前文件指针的位置,该位置为相对于文件末尾的位移量表示C.出错时返回值为0D.以上叙述都不正确
已知outfile 是一个输出流对象,要想将outfile 的文件指针定位到当前位置之前321字节处,正确的函数调用语句是______ 。A.outfile.seekp (321, ios_ base:: cur);B.outfile.seekp (321,ios_ base:: beg);C.outfile.seekp (-321,ios_ base:: beg);D.outfile.seekp (-321,ios_ base:: cur);
已知outfile是一个输出流对象,要想像outfile的文件指针定位到当前位置之前321字节处,正确的函数调用语句是A.outfile.seekp(321,ios_base::cur);B.outfile.seekp(321,ios_base::beg);C.outfile.seekp(-321,ios_base::beg);D.outfile.seekp(-321,ios_base::cur);
若当前位置是文件中的第10个字符,文件总长度为100,则执行如下语句后指针指向第____个字符。 istream seekg(10, ios::cur)