题目内容

据科学考察:火星的运行确实与地球有着相似之处,它的自转周期仅比地球长41分钟,它的自转轴倾角也只比地球的黄赤交角大33',火星上不仅有类似地球上的季节之分,还有“五带”之分。太阳直射点在火星表面的移动范围是()

A. 23°26'N至23°26'S
B. 22°54'N至22°54'S
C. 23°59'N至23°59'S
D. 23°31'N至23°31'S

查看答案
更多问题

以下程序运行后的输出结果是____,____。#include“stdio.h ”void swap(int a,int *b){ int c;c=a; a=*b; *b=c;printf("%d %d",a,*b);}void main(){ int a=3,b=2;swap(a,&b);printf("%d %d", a,b);}

以下程序运行后的输出结果是____,____。#include“stdio.h ”void swap(int *x,int *y){ int t;{ t=*x; *x=*y; *y=t;}printf("%d %d\n",*x,*y);}void main(){ int a[]={2,3};swap(&a[0],&a[1]);printf("%d %d\n", a[0],a[1]);}

函数的返回值是一个指针型数据,即函数返回的数据不是具体的数值是地址。#include void main(){ int *fun(int *, int *);int a=2,b=4;int *p;p=____;printf("%f\n",*p);}int *fun(int *a, int *b){ if(*a<*b) ____;else return b;}

mystrcat函数实现的是字符串的连接操作。请填空。void mystrcat(char *str1,char *str2){ char *p=str1,*q=str2;while(*p)p++;while(____){ *p=*q ;p++;q++;}*p='\0';}

答案查题题库