首页/ 题库 / [单选题]下列程序的运行结果是( )。#inclu的答案

下列程序的运行结果是( )。#include void fun(int a, int b){ int k; k=a; a=b; b=k;} main() { int a=3, b=6, x=&a, y=&b;fun(x,y); printf("%d %d ", a, b);}

单选题
2021-09-06 20:26
A、6 3
B、3 6
C、编译出错
D、0 0
查看答案

正确答案
B

试题解析

标签: 长安大学 C语言
感兴趣题目
下列程序段运行后窗体上输出结果为( )。 Private Sub Command1_Click() a=5: b=4: c=3: d=2 x=3>2*b Or a=c And b<>c Or c>d Print x End Sub
下列程序段运行后窗体上输出结果为( )。 Private Sub Command1 Click() a=5:b=4:c=3:d=2 X=3>2*b Or a=c And b<>C Or c>d Print X End Sub
阅读下列程序  LOGICAL L1,L2,L3,L4,L5  DATA L1,L2,L3/3*.TRUE./  L4=.NOT.L1.AND..NOT.L2.AND.L3  L5=.NOT.L1.OR..NOT.L2.OR.L3  WRITE(*,*)L4,L5  END  程序运行结果是()
有以下程序:#include<stdio.h>main(){ char a='H'; a=(a>='A'&&a printf("%c",a);}程序运行后的输出结果是(  )。
有以下程序: #include <stdio.h> main() { int a=1,b=2,c=3,x; x=(ab)&c; printf("%d ",x); } 程序的运行结果是( )。
有以下函数:#include main(){ int a=12,c; c=(a<<2)<<1; printf(%d,c);}程序运行后的输出结果是(  )。
有以下程序: #include <stdio.h> fun(int x,int y,int z) { z=x*y;} main() { int a=4,b=2,c=6; fun(a,b,c); printf("%d",c); } 程序运行后的输出结果是( )。
有以下程序:#include #include #include main(){ char*p1,*p2; p1=p2=(char*)malloc(sizeof(char)*10); strcpy(p1,malloc); strcpy(p2,p1+1); printf(%c%c, p1[0], p2[0]);}程序的运行结果是(  )。
有以下程序: #include  void fun(char *c,int d) {  *c=*c+1;  d=d+1;  printf("%c,%c,",*c,d); } main() {  char b='a',a='A';  fun(&b,a);  printf("%c,%c",b,a); } 程序运行后的输出结果是。
有以下程序: #include <stdio.h> main( ) { char s[ ] ="159" , * p; p=s; printf( "% c", * p + + ); printf("%~", * p++);}程序运行后的输出结果是( )。
有以下程序: #include<stdio.h> #define X 5+6 main() {int a=2,c; C=X*2: printf("%d",C); } 程序运行后的输出结果是( )。
有以下程序: #include<stdio.h> main() { int a=1,b=2,c=3,x; x=(a^B)&c;printf("%d ",x); } 程序的运行结果是( )。
相关题目
下列程序的运行结果是( )。#include void fun(int a, int b){ int k; k=a; a=b; b=k;} main() { int a=3, b=6, x=&a, y=&b;fun(x,y); printf("%d %d ", a, b);}
以下程序的执行结果是 ( )#include{int i=10,j=10;printf("%d,%d\n",++i,j--); }
阅读下面的程序#includevoid main(){int i,j;scanf("%3d%2d",&i,&j);printf("i=%d,j=%d\n",i,j);}如果从键盘上输入1234567<回车>,则程序的运行结果是____
阅读下面的程序#includevoid main(){ int i,j; i=010; j=9; printf("%d,%d",i-j,i+j);}则程序的运行结果是____
若变量已正确定义,下面程序段的输出结果是( )。#includemain(){float x=1236547;printf("%f\n",(int)(x1000+05)/(float)1000);}
执行下面程序中的输出语句后,输出结果是_____#includevoid main(){int a;printf("%d\n",(a=35,a4,a+5));}
有以下程序main(){ int c=35;printf(“%d ”,c&C) ;} 程序运行后的输出结果是
有以下程序: main() { int c=35; printf("%d ",c&c);} 程序运行后的输出结果是( )。
以下程序运行后,输出结果是( )。 a=1:b=2:c=3 a=a+b:b=b+c:c=b+a If a<>3 Or b<>3 Then a=b-a:b=c-a:c=b+a End If Print a+b+c
有如下程序: a=1:b=2:c=3 a=a+b:b=b+c:c=b+a If a<>3 Or b<>3 Then a=b-a:b=C-a:C=b+a End If Print a+b+c 运行后,输出的结果是( )。
有以下程序: #include<stdio.h> main() { printf("%d ",NULL);} 程序运行后的输出结果是( )。
有以下程序: #include <stdio.h> main() { printf("%d ",NULL)"} 程序运行后的输出结果是( )。
有以下程序: #include<stdio.h> main() {printf("%d ",NULL)); 程序运行后的输出结果是( )。
有以下程序: #include<stdio.h> main { short C=124; C=C_; printf("%d ",c); } 若要使程序的运行结果为248,应在下划线处填入的是( )。
设a=5,b=4,c=3,d=2,下列表达式的值是 3>2*b Or a=c And b<>C Or c>d
设a=5,b=4,c=3,d=2,下列表达式的值是( )。 3>2*b Or a=c And b<>c Or c>d
设a=5,b=4,c=3,d=2下列表达式的值是 3>2*b Or a=c And b<>C Or c>d
设a=5,b=4,c=3,d=2下列表达式的值是( )。3 > 2 * b Or a = c And b <> c Or c > d
设a=5,b=4,c=3,d=2,下列表达式的值是 3>2*b Or a=c And b<>c Or c>d
设a=2,b=3,c=4,d=5,下列表达式的值是( )。 3>2*b Or a=c And bc Or ba+c
广告位招租WX:84302438

免费的网站请分享给朋友吧