c语言结构体赋值,并输出各种类型变量的值

1 代码

#include<stdio.h>
struct Student{
  char sex;
  int age;
  char name[10];
};


main(){
  struct Student xiaohong;
  xiaohong.age = 1;
  xiaohong.sex = 'w';
  strcpy(xiaohong.name, "hello");
  printf("address = %s,sex = %c,age = %d,name = %s",&xiaohong,xiaohong.sex,xiaohong.age,&xiaohong.name[0]);
}


2 结果


c语言结构体赋值,并输出各种类型变量的值_第1张图片

你可能感兴趣的:(c语言结构体赋值,并输出各种类型变量的值)