单项选择题
单项选择题 有以下程序:#include <stdio.h>main(){ int findmax(int,int,int),m;┋m=findmax(a,b,e);┋}int findmax(int x,int y,int z){ … }则以下叙述正确的是______。
单项选择题 有以下程序:#include <stdio.h>int fun(char *s){ char *p=s;while(*p !="\0")p++;return(p-s);}main(){ char *p="01234";printf("%d\n",fun(p));}程序的运行结果是______。
单项选择题 有以下程序:#include <stdio.h>main(){ char s[10]="verygood", *ps=s;ps+=4;ps="nice";puts(s);}程序的运行结果是______。