c语言基础---结构体指针
!#include <stdio.h>
#include <stdlib.h>
struct student{
int score;
char name[128];
};
int main()
{
struct student stu1;
stu1.score = 98;
strcpy(stu1.name,“yrx”);
printf(“score = %d,name = %s”,stu1.score,stu1.name);
printf("\n");
struct student
原创
2021-08-22 16:14:03 ·
147 阅读 ·
0 评论