更多"以下程序的输出结果是______。 #include<stdio.h"的相关试题:
[填空题]以下程序的输出结果是______。
#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);
[填空题]以下程序运行后输出结果是 【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;
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);
[填空题]下列程序的输出结果是 【11】 。
#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;
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;
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);
[填空题]以下程序运行后输出结果是 【11】 。
#include
void fun(int x)
{ if(x/5>0) fun(x/5);
printf("/%dn",x);
}
main( )
{ fun(11); printf("/n"); }
[单项选择]有以下程序:
#include <stdio.h>
void swap(char *x, char *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. 321,cba
B. abc,123
C. 123,abc
D. 1bc,a23
[简答题]以下程序输出的结果是:
#include "stdio.h"
void main( )
{
char ch[]="I-love-Great-Wall-of-China!";
char *p=ch;
printf("%c",*(p+5));
}