摘要: 有以下程序# include <stdio.h>main(){ int i=5; do { if (i%3==1) if (i%5==2) { printf([阅读全文:]
摘要: 以下程序的输出结果是include "stdio.h"int *f(int *x,int *y){ if(*x<*y) return x; else re[阅读全文:]
摘要: 有如下程序段#include "stdio.h"void fun(int *a,int *b,int *c,int *d,int *e){ int i,j,k,m;[阅读全文:]
摘要: 有如下程序#include "stdio.h"void fun(int *a,int *b){ int m; m=(*a+*b)*(*a+*b); m+=(*a-*b[阅读全文:]
摘要: 若有下面的程序段char s[]="china";char *p; p=s;则下列叙述正确的是[阅读全文:]
摘要: 有以下程序#include "stdio.h"#define M(x,y) (x)*(y) #define N(x,y) (x)/(y) main(){ int a=5,[阅读全文:]
摘要: 下列程序的输出结果是int b=2;int func(int *a){ b+=*a; return(b);}main(){ int a=2, res=2; r[阅读全文:]
摘要: 若有定义语句:int m[]={1,2,3,4,5},i=4;,则下面对m 数组元素的引用中错误的是[阅读全文:]
摘要: 软件设计中,有利于提高模块独立性的一个准则是[阅读全文:]
摘要: 有以下程序#include <stdio.h>union pw{ int i; char ch[2];}a;main(){ a.ch[0]=13;a.[阅读全文:]