C学习杂记(五)形参实参笔试题

大意失荆州

 

不要以为简单就轻视,谨慎,细节,基础。

 

一、有以下程序

#include 

typedef struct {int b, p;} A;

void f(A c)
{
    c.b += 1; c.p += 2;
}

void main(void)
{
    A a = {1, 2};

    f(a);

    printf("%d, %d\n", a.b, a.p);
}

输出结果是______。

 

在调用函数中改变形参(c.b和c.p)的值不会对实参(a.b和a.p)的值有影响,即实参不变,结果为1, 2。

 

二、有以下程序

#include 
#include 

typedef struct { char name[9]; char sex; float score[2]; } STU;

void f(STU a)
{
    STU b = {"Zhao", 'm', 85.0, 90.0};
    int i;

    strcpy(a.name, b.name);

    a.sex = b.sex;

    for(i = 0; i < 2; i++)
        a.score[i] = b.score[i];
}

void main(void)
{
    STU c = {"Qian", 'f', 95.0, 92.0};
    f(c);
    printf("%s, %c, %2.0f, %2.0f\n", c.name, c.sex, c.score[0], c.score[1]);
}

程序运行后的输出结果是_________________

 

答案:Qian, f, 95, 92。这里除了形参实参的考察,还有%m.nf的考察。m表示整个浮点数的输出宽度,n表示小数输出宽度。

你可能感兴趣的:(C)