以下对指针变量的操作中,不正确的是()。
A. int a; int* p, q; p=q=&a;
B. int* a, b=1,*p; p=&b; a=p;
C. int *p, q; p=&q;
D. int a; int* p, *q; p=q=&a;
从键盘任意输入10个整数,计算并输出最大值和最小值及其它们在数组中的下标位置。按要求在空白处填写适当的表达式或语句,使程序完整并符合题目要求。程序运行结果示例1:Input 10 numbers:1 2 3 4 5 6 7 8 9 10↙max=10,pos=9min=1,pos=0程序运行结果示例2:Input 10 numbers:2 4 5 6 8 10 1 3 5 7 9↙max=10,pos=5min=1,pos=6#include int FindMax(int a[], int n, int *pMaxPos);int FindMin(int a[], int n, int *pMinPos);int main(){ int a[10], maxValue, maxPos, minValue, minPos, i; printf("Input 10 numbers:"); for (i=0; i<10; i++) {scanf("%d", &a[i]); // 输入10个数 } maxValue = FindMax(a, 10, _________); // 找最大值及其所在下标位置 minValue = FindMin(a, 10, _________); // 找最小值及其所在下标位置 printf("max=%d,pos=%d\n", maxValue, maxPos); printf("min=%d,pos=%d\n", minValue, minPos); return 0;}//函数功能:求有n个元素的整型数组a中的最大值及其所在下标位置,函数返回最大值int FindMax(int a[], int n, int *pMaxPos){ int i, max; max = a[0]; //假设a[0]为最大值 __________; //假设最大值在数组中的下标位置为0 for (i=1; i max){max = a[i];__________; //pMaxPos指向最大值数组元素的下标位置} } return max ;}//函数功能:求有n个元素的整型数组a中的最小值及其所在下标位置,函数返回最小值int FindMin(int a[], int n, int *pMinPos){ int i, min; min = a[0]; //假设a[0]为最小 __________; //假设最小值在数组中的下标位置为0 for (i=1; i<10; i++) {if (a[i] < min){min = a[i];__________; //pMinPos指向最小值数组元素的下标位置} } return min ;}
A. 第13行:maxPos第14行:minPos第25行:pMaxPos = 0第32行:*pMaxPos = i第43行:pMinPos = 0第50行:*pMinPos = i
B. 第13行:&maxPos第14行:&minPos第25行:*pMaxPos = 0第32行:*pMaxPos = i第43行:*pMinPos = 0第50行:*pMinPos = i
C. 第13行:maxPos第14行:minPos第25行:pMaxPos = 0第32行:pMaxPos = i第43行:pMinPos = 0第50行:pMinPos = i
D. 第13行:&maxPos第14行:&minPos第25行:pMaxPos = 0第32行:pMaxPos = i第43行:*pMinPos = 0第50行:*pMinPos = i
以下程序输出结果是( )#include void fun(char s[]){printf("%d",sizeof(s));}int main(){char s[100];printf("%d ",sizeof(s));fun(s);return 0;}
A. 100 4
B. 100 100
C. 4 4
D. 4 100
若有定义:int x[10], *p=x;,则(p+1)和*(p+2)分别表示的是( )。
A. 数组元素x[1]的地址和数组元素x[2]的值
B. 数组元素x[0]的地址和数组元素x[1]的值
C. 数组元素x[1]的值和数组元素x[2]的地址
D. 数组元素x[0]的值和数组元素x[1]的地址