Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> การเขียนโปรแกรม C

เขียนโปรแกรมตัวอย่างเกี่ยวกับโครงสร้างโดยใช้ภาษาซี


โครงสร้างคือชุดของตัวแปรประเภทข้อมูลต่างๆ ที่จัดกลุ่มเข้าด้วยกันภายใต้ชื่อเดียว ไวยากรณ์

การประกาศและการเริ่มต้นของโครงสร้าง

รูปแบบทั่วไปของการประกาศโครงสร้างมีดังนี้ -

datatype member1;
struct tagname{
   datatype member2;
   datatype member n;
};

ที่นี่ struct - คำหลัก

tagname - ระบุชื่อโครงสร้าง

member1, member2 - ระบุรายการข้อมูลที่สร้างโครงสร้าง

ตัวอย่าง

struct book{
   int pages;
   char author [30];
   float price;
};

ตัวแปรโครงสร้าง

มีสามวิธีในการประกาศตัวแปรโครงสร้าง ดังต่อไปนี้ −

1) struct book{
   int pages;
   char author[30];
   float price;
}b;
2) struct{
   int pages;
   char author[30];
   float price;
}b;
3) struct book{
   int pages;
   char author[30];
   float price;
};
struct book b;

การเริ่มต้นและการเข้าถึงโครงสร้าง

  • การเชื่อมโยงระหว่างสมาชิกและตัวแปรโครงสร้างถูกสร้างขึ้นโดยใช้ตัวดำเนินการสมาชิก (หรือ) ตัวดำเนินการจุด

  • การเริ่มต้นสามารถทำได้ด้วยวิธีต่อไปนี้ -

วิธีที่ 1

struct book{
   int pages;
   char author[30];
   float price;
} b = {100, “balu", 325.75};

วิธีที่ 2

struct book{
   int pages;
   char author[30];
   float price;
};
struct book b = {100, “balu", 325.75};

วิธีที่ 3 (โดยใช้ตัวดำเนินการสมาชิก)

struct book{
   int pages;
   char author[30];
   float price;
} ;
struct book b;
   b. pages = 100;
   strcpy (b.author, “balu");
   b.price = 325.75;

วิธีที่ 4 (โดยใช้ scanf ฟังก์ชัน)

struct book{
   int pages;
   char author[30];
   float price;
} ;
struct book b;
   scanf (“%d", &b.pages);
   scanf (“%s", b.author);
   scanf (“%f", &b. price);

เราสามารถพิมพ์เนื้อหาของโครงสร้างข้างต้นด้วยวิธีหลักดังที่แสดงด้านล่าง -

main ( ){
   struct book b;
   clrscr ( );
   printf ( "enter no of pages, author, price of book");
   scanf ("%d%s%f", &b.pages, b.author, &b.price);
   printf("Details of book are");
   printf("pages =%d, author = %s, price = %f", b.pages, b.author, b.price);
   getch();
}

ตัวอย่าง

ต่อไปนี้เป็นตัวอย่างโครงสร้างอื่น -

#include<stdio.h>
struct aaa{
   struct aaa *prev;
   int i;
   struct aaa *next;
};
main(){
   struct aaa abc,def,ghi,jkl;
   int x=100;
   abc.i=0;
   abc.prev=&jkl;
   abc.next=&def;
   def.i=1;
   def.prev=&abc;
   def.next=&ghi;
   ghi.i=2;ghi.prev=&def;
   ghi.next=&jkl;
   jkl.i=3;
   jkl.prev=&ghi;
   jkl.next=&abc;
   x=abc.next->next->prev->next->i;
   printf("%d",x);
}

ผลลัพธ์

2