皮皮学,免费搜题
登录
logo - 刷刷题
搜题
【简答题】
A.The fast-developing technology. B.The increasing information and communication via the Net. C.The way how people make use of the Internet. D.The people who design different applications.
手机使用
分享
复制链接
新浪微博
分享QQ
微信扫一扫
微信内点击右上角“…”即可分享
反馈
参考答案:
举一反三
【单选题】设计一个函数用来交换两个变量的值。并在主函数调用它。#include stdio.h ;void main(){ int x=5,y=10; ;//调用函数 printf(交换后:x=%d,y=%d\n,x,y);}void swap(int *p1,int *p2){ int x; x=*p1; *p1=*p2; *p2=x;}在划线处填上正确的选项( )。
A.
void swap(int*,int*),swap(&x,&y)
B.
void swap(int,int),swap(&x,&y)
C.
void swap(int*,int*),swap(x,y)
D.
void swap(int,int),swap(x,y)
【单选题】I’ll spend what I have _____ you a new coat.
A.
buying
B.
bought
C.
to buy
D.
buy
【单选题】若已定义函数原型如下的swap():void swap(int *p1, int *p2);则在以下main()中调用了swap函数的正确语句是( )int main(){ int a = 3, b = 5; ( ) // 调用函数swap,交换a和b的内容 printf("%d %d\n", a, b); return 0;}
A.
swap(&a, &b);
B.
swap(a, b);
C.
swap(*a, *b);
D.
swap(int *a, int *b);
【单选题】I’ll spend all my work time _____ giving advice _____ learning English well.
A.
in, on
B.
on, in
C.
in, in
D.
to, on
【简答题】有函数void swap(int * p1 , int * p2){ int temp; temp=*p1; *p1=*p2; *p2=temp;}下面程序中,( )能正确地调用swap函数,使数组前2个元素的值互换。A. #include int main() { int a[5]={1,2,3,4,5}; swap(&a[0],&a[1]); printf("调用函数后:a[0]=%d\ta...
【单选题】I'll spend _        _ five days in Shanghai. [     ]
A.
other
B.
the other
C.
another
【简答题】swap函数定义如下:void swap(int * p1 , int * p2){ int temp; temp=*p1; *p1=*p2; *p2=temp;}下面程序中,( )能正确地调用swap函数,使数组前2个元素的值互换。A. #include int main() { int a[5]={1,2,3,4,5}; swap(&a[0],&a[1]); printf("调...
【单选题】关于小汗腺的特征,哪种说法不正确()
A.
小汗腺属单曲管状腺
B.
有明细胞和暗细胞两种分泌细胞
C.
分泌部位位于真皮深部和皮下组织
D.
暗细胞是分泌汗液的主要细胞
E.
受交感神经系统支配
【简答题】#include<stdio.h> void swap(int *P,int *q) { int t; t=*P;*P=*q;*q=t; } main() {int a=10,b=20;swap(&a,&b); printff'%d%d/n',a,b); }
【单选题】设计一个函数用来交换两个变量的值。并在主函数调用它。 #include ________ ;void main(){ int x=5,y=10; _________ ;//调用函数 printf("交换后:x=%d,y=%d\n",x,y);} void swap(int *p1,int *p2){ int x; x=*p1; *p1=*p2; ...
A.
void swap(int*,int*),swap(&x,&y)
B.
void swap(int,int),swap(&x,&y)
C.
void swap(int*,int*),swap(x,y)
D.
void swap(int,int),swap(x,y)
相关题目:
参考解析:
知识点:
题目纠错 0
发布
创建自己的小题库 - 刷刷题