题目内容

在c程序中,只能给指针赋NULL值和【 】值。

查看答案
更多问题

将函数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);}

答案查题题库