更多"以下程序的输出结果是______。
#include <stdio"的相关试题:
[填空题]以下程序的输出结果是 【10】 。
#include <stdio.h>
void swap(int *a, int *b)
{ int *t;
t=a; a=b; b=t;
}
main( )
{ int i=3,j=5,*p=&i,*q=&j;
swap(p,q); printf("%d %d/n",*p,*q);
}
[填空题]以下程序的输出结果是______。
#include<stdio.h>
void swap(int*a,int*b)
int*t;
t=a;a=b;b=c;
main( )
int i=3,j=5,*p=&i,*q=&j;
swap(p,q);printf("%d %d/n",*p,*q);
[填空题]以下程序运行后输出结果是 【18】 。
#include <stdio, h>
void swap(int x.int y)
int t;
t = x;x = y;y = t: printf( "% d % d ",x,y);main ( )
iht a=3,b=4:
swap(a,b); prinff( "% d % d" ,a,b);
[填空题]以下程序的输出结果是______。
#include<stdio.h>
void swap(int *a,int *b)
int *t:
t=a;a=b;b=t;
main( )
int i=3,j=5,*p=&i,*q=&j;
swap(p,q);printf("%d%d/n",*p,*q);
[填空题]以下程序的输出结果是______。
#include <stdio.h>
void swap(int *a, int *b)
int *t;
int i=3,j=5,*p=&i,*q=&j;
swap(p,q); printf("%d %d/n",*p,*q);
[填空题]下列程序的输出结果是______。
#include <stdio.h>
void swap(int *a, int *B)
int *t;
t=a;a=b;b=t;
main( )
int i=3,j=5,*p=&i,*q=&j;
swap(p,q);printf("%d %d/n",*p,*q);
[填空题]下列程序的输出结果是______。
#include<stdio.h>
void swap(int *a,int *b)
int *t;
t=a;a=b;b=t;
void main( )
int i=3,j=5,*p=&i,*q=&j;
swap(p,q);printf("%d %d/n",*P,*q);
[填空题]以下程序的输出结果是______。
#include
void main( )
{ int a=0;
a+=(a=8);
cout<<a;
}
[填空题]以下程序输出的结果是 。
#include<iostream.h>
void main( )
{
int a=5,b=4,c=3,d;
d=(a>b>c) ;
cout < < d;
}
[单项选择]有以下程序:#include <stdio.h>void swap(char * x,ehar *
y){ char t; t= *x; *x: *y; *y=t;main (
){ char *s1 ="abc", * s2 ="123"; swap(s1 ,s2);
printf("%s,%s /n" ,s1 ,s2);}程序执行后的输出结果是 。
A. 123,abe
B. abe,123
C. 1bc,a23
D. 321,cba