C语言程序设计试题_练习题(16)
发布时间:2021-06-05
发布时间:2021-06-05
A. x!=0 B. x==1 C. x!=1 D. x==0 8.若有以下说明和语句:
struct stu {
int no; char *name;
}student, *p=&student;
则以下引用方法不正确的是( )。 A. student.no B. (*p).no C. p->no D. student->no 9.以下对二维数组进行正确初始化的是( )。 I. int a[2][3]={{1,2},{3,4},{5,6}}; J. int a[2][3]={{1,2},{},{4,5}}; K. int a[][3]={1,2,3,4,5,6}; L. int a[2][]={{1,2},{3,4}};
10.二维数组a有m行n列,则在a[i][j]之前的元素个数为( )。 A. j*n+i B. i*n+j C. i*n+j-1 D. i*n+j+1
四、写出下列程序的运行结果。(4分,每题1分) 1.#include<stdio.h>
void fun(int x) {
x=20; }
main() {
int x = 10; fun(x);
printf("x = %d\n", x); }
运行结果是:
2.#include<stdio.h>
void fun(int b[4]) {
int j;
for(j=0; j<4; j++) b[j]=j; } main() {
int a[4] = {1,2,3,4}, k; fun(a);
for(k=0; k<4; k++)
printf("%d\n", a[k]);