题目内容

将函数fun 的入口地址赋给指针变量p的语句是【】。

查看答案
更多问题

程序运行结果是【】。main(){int oddadd(int *pt,int n);static int a[10]={1,2,3,4,5,6,7,8,9,10};int *p,total;p=&a[1];total=oddadd(p,10);printf("%d\n",total);}oddadd(int *pt, int n){int i,sum=0;for(i=1;i

下面程序的运行结果是【】 #include int sub(int *s) {static int t=0;t=*s+t;return t; } int main() {int i,k;for(i=0; i<4; i++){k=sub(&i);printf("%d ", k);}printf("\n");return 0; }

【程序改错】题目:函数 fun 的功能是:判断字符ch是否与str所指串中的某个字符相同; 若相同,什么也不做,若不同,则将其插在串的最后。要求:请将程序在VC++6.0等环境中编辑运行,并将填空后的程序及运行结果截图上传。--------------------------------------------------------------------------------------------------------------------------------注意:不可以增加或删除程序行,也不可以更改程序的结构。--------------------------------------------------------------------------------------------------------------------------------#include #include #include /**********FOUND**********/void fun(char str, char ch ){while ( *str && *str != ch ) str++;/**********FOUND**********/if ( *str == ch ){str [ 0 ] = ch;/**********FOUND**********/str[1] = '0';}}main( ){char s[81], c ;clrscr();printf( "\nPlease enter a string:\n" ); gets ( s );printf ("\n Please enter the character to search : " );c = getchar();fun(s, c) ;printf( "\nThe result is %s\n", s);}

【程序填空】题目:用函数调用方式,实现字符串的复制。要求:请将程序在VC++6.0等环境中编辑运行,并将填空后的程序及运行结果截图上传。------------------------------------------------------------------------------void string_copy(char *str_from, char *str_to){int i=0;/***********SPACE***********/for(; (*(【?】)=*(str_from+i))!='\0'; i++) ;}main(){static char array_str1[20]="I am a teacher.";char array_str2[20];/***********SPACE***********/【?】(array_str1, array_str2);/***********SPACE***********/【?】("array_str2=%s\n",array_str2);}

答案查题题库