填空题

有如下的程序:
#include <iostream>
#include <fstream>
using namespace std;
int main()
ofstream outf("D:\\temp.txt",ios_base::trunc) ;
outf<<"World Wide Web";
outf.close();
ifstream inf("D:\\temp.txt");
char s[20];
inf>>s;
inf.close();
cout<<s;
return 0;
执行后的输出结果是 【15】 。

【参考答案】

World
<上一题 目录 下一题>
热门 试题

填空题
以下程序运行后的输出结果是 【14】 。 #include <iostream> #include <string> using namespace std; class Y; class X int x; char *strx; public: X(int a,char *str) x=a; strx=new char[strlen(str)+1]; strcpy(strx,str); void show(Y &ob) ; ; class Y private: int y; char *stry; public: Y(int b,char *str) y=b; stry=new char[strlen(str)+1]; strcpy(stry, str); friend void X::show(Y &ob) ; ; void X::show(Y &ob) cout<<strx<< , ; cout<<ob.stry<<end1; int main() X a(10, stringX ); Y b(20, stringY ); a. show (b) ; return O;
填空题
经常和一个运算符连用,构成一个运算符函数名的C++关键词是 【12】 。
相关试题
  • 有以下程序: #include <iostream> u...
  • 以下程序执行结果是 ( )。 #include...
  • 若有以下程序 #include <iostream> u...
  • 若有以下程序: void g(int **q) ...
  • 有如下程序: #include <iostream> u...