万能百科>>计算机 >>

"计算机"分类下的词条

有以下程序# include <stdio.h>main(){ int i=5; do { if (i%3==1) if (i%5==2) { pr
编辑:0次 | 浏览:次 词条创建者:温馨耳语     创建时间:2021-05-04
标签:

摘要: 有以下程序# 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
编辑:0次 | 浏览:次 词条创建者:小甜豆     创建时间:2021-05-04
标签:

摘要: 以下程序的输出结果是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,
编辑:0次 | 浏览:次 词条创建者:那时天晴     创建时间:2021-05-04
标签:

摘要: 有如下程序段#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
编辑:0次 | 浏览:次 词条创建者:liangliang     创建时间:2021-05-04
标签:

摘要: 有如下程序#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;则下列叙述正确的是
编辑:0次 | 浏览:次 词条创建者:糖豆     创建时间:2021-05-04
标签:

摘要: 若有下面的程序段char s[]="china";char *p; p=s;则下列叙述正确的是[阅读全文:]

有以下程序#include "stdio.h"#define M(x,y) (x)*(y) #define N(x,y) (x)/(y) main(){ int
编辑:0次 | 浏览:次 词条创建者:胡晓     创建时间:2021-05-04
标签:

摘要: 有以下程序#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
编辑:0次 | 浏览:次 词条创建者:雨果果天晴     创建时间:2021-05-04
标签:

摘要: 下列程序的输出结果是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 数组元素的引用中错误的是
编辑:0次 | 浏览:次 词条创建者:大福地     创建时间:2021-05-04
标签:

摘要: 若有定义语句:int m[]={1,2,3,4,5},i=4;,则下面对m 数组元素的引用中错误的是[阅读全文:]

软件设计中,有利于提高模块独立性的一个准则是
编辑:0次 | 浏览:次 词条创建者:way     创建时间:2021-05-04
标签:

摘要: 软件设计中,有利于提高模块独立性的一个准则是[阅读全文:]

有以下程序#include <stdio.h>union pw{ int i; char ch[2];}a;main(){ a.ch[0]=13;a
编辑:0次 | 浏览:次 词条创建者:Like     创建时间:2021-05-04
标签:

摘要: 有以下程序#include <stdio.h>union pw{ int i; char ch[2];}a;main(){ a.ch[0]=13;a.[阅读全文:]