题目内容

请补充main函数,该函数的功能是:从一个字符串中截取前面若干个给定长度的子字符串。其中,str1指向原字符串,截取后的字符存放在str2所指的字符数组中,n中存放需截取的字符个数。
例如:当str1=“cdefghij”,然后输入4,则str2=“cdef”。
注意:部分源程序给出如下。
请勿改动主函数main和其他函数中的任何内容,仅在函数fun()的横线上填入所编写的若干表达式或语句。
试题程序:
include<stdio.h>
include<conio.h>
define LEN 80
main()
{
char str1[LEN),str2[LEN);
int n,i;
clrscr();
printf(“Enter the string:\n”);
gets(str1);
printf“Enter the position of the string
deleted:”);
scanf(【 】);
for(i=0;i<n;i++)
【 】
str2[i]=‘\0’;
printf(“The new string is:%s\n”,【 】);
}

查看答案
更多问题

Every country has its own historic background.

以下程序的执行结果是【 】。
include<iostream>
using namespace std;
class base
{
public:
virmal void who(){cout<<"Base Class"<<endl;)
};
class Derivedl:public Base
{
public:
virtual void who(){cout<<"Derivedl Class"<<endl;}
};
class derived2:public Base
{
public:
virtual void who(){cout<<"Derived2 Class"<<endl;)
};
int main(int argc,char*argv[])
{
base obj1,*P;
deliVedl obj2;
derived2 obj3;
p=&obj1; p->who();
p=&obj2; p->who();
p=&obj3; p->who();
return 0;
}

农民田某于2001年去国外打工时在途中遇海难失踪,从此杳无音讯。2006年其妻胡某向当地人民法院申请宣告田某死亡,人民法院经审理判决宣告田某死亡。由于年幼的女儿田燕身体一直不好,家中又没有足够的经济能力给田燕治疗,2007年胡某将田燕送给膝下无子的邻村姚某收养,并办理了合法的手续。
2008年,失踪多年的田某突然返回,法院随即撤销了对田某的死亡宣告。田某要求与胡某恢复夫妻关系,并提出田燕的收养未征得他的同意,违反我国《收养法》,是无效的,要求撤销收养合同。姚某与胡某都不同意,田某诉至法院。
田某与胡某间的夫妻关系是否还存在?

在数据库应用系统设计的需求分析阶段,需经过收集资料、分析整理、【 】、建立数据字典和用户确认等阶段。

答案查题题库