91学习

陪伴你每一天!

使用结构体变量的指针作为参数输出数据

#include <stdio.h>


struct Student{

char cName[20];

float fScore[3];

}student={"SuYuQun",98.5f,89.0,93.5f};


void Display(struct Student* stu){

printf("-----Information----\n");

printf("Name:%s\n",stu->cName);

printf("English:%.2f\n",stu->fScore[2]);

stu->fScore[2]=90.0f;

}

int main(){

struct Student* pStruct=&student;

Display(pStruct);

printf("Changed English :%.2f\n",pStruct->fScore[2]);

return 0;

}

加威信18790284560免费送POS机.jpg

发表评论:

◎欢迎参与讨论,请在这里发表您的看法、交流您的观点。