chgstruc.c

来自「C_C++程序员实用大全(精华版)源代码 代码详实 一步一步深入 适合各阶段」· C语言 代码 · 共 33 行

C
33
字号
#include <stdio.h>

struct Shape 
{
  int type;
  int color;
  float radius;
  float area;
  float perimeter;
};

void change_structure(struct Shape *shape)
 {
   (*shape).type = 0;
   (*shape).color = 1;
   (*shape).radius = 5.0;
   (*shape).area = 22.0 / 7.0 * (*shape).radius * (*shape).radius; 
   (*shape).perimeter = 2.0 * 22.0 / 7.0 * (*shape).radius;
 }

void main(void)
 {
   struct Shape circle;
   
   change_structure(&circle);
   
   printf("circle.type %d\n", circle.type);
   printf("circle.color %d\n", circle.color);
   printf("circle.radius %f circle.area %f circle.perimeter %f\n",
     circle.radius, circle.area, circle.perimeter);
 }

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?