摘要: 有以下程序# include <stdio.h>main(){ int i=5; do { if (i%3==1) if (i%5==2) { printf([閱讀全文:]
摘要: 以下程序的輸出結(jié)果是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,[閱讀全文:]
摘要: 下列程序的輸出結(jié)果是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 數(shù)組元素的引用中錯誤的是[閱讀全文:]
摘要: 軟件設(shè)計中,有利于提高模塊獨立性的一個準(zhǔn)則是[閱讀全文:]
摘要: 有以下程序#include <stdio.h>union pw{ int i; char ch[2];}a;main(){ a.ch[0]=13;a.[閱讀全文:]