摘要: 有以下程序#include <stdio.h>int fun(int (*s)[4],int n, int k){ int m, i;m=s[0][k];fo[阅读全文:]
摘要: 有以下程序void func(int *a,int b[]){ b[0]=*a+6; }main(){ int a,b[5]={0};a=0; b[0]=3;func(&[阅读全文:]
摘要: fun函数的功能是首先对a所指的N行N列的矩阵找出各行中最大的数,再求这N个最大值中最小的那个数作[阅读全文:]
摘要: 数据结构包括数据的结构和数据的存储结构。[阅读全文:]
摘要: 有如下程序main(){ int x=1,a=0,b=0; switch(x) { case 0: b++; case 1: a++; case 2: a++;b++[阅读全文:]
摘要: 以下程序的输出结果是#include <stdio.h>int fun(int x){static int m=0;return(m *=x);}m[阅读全文:]
摘要: 下面程序的输出是main(){ int arr[10],i,k=0; for(i=0;i<10;i++)arr[i]=i; for(i=1;i<4;i+[阅读全文:]
摘要: 有如下程序段struct abc{ int a, b, c, s;};main(){ struct abc s[2]={{1,2,3},{4,5,6}}; int t;[阅读全文:]
摘要: 以下程序的输出结果是#include <stdio.h>main(){int i,j,sum;for(i=5;i>=1;i--){sum=0;[阅读全文:]
摘要: 若int k=8;,则执行下列程序后,变量k的正确结果是main(){ int k=8; switch(k) {case 8:k+=1;case[阅读全文:]