Computer >> 컴퓨터 >  >> 프로그램 작성 >> C 프로그래밍

C언어에서 구조체 변수 접근에 대해 설명

<시간/>

구조는 다양한 데이터 유형의 데이터 모음을 저장하는 데 사용되는 사용자 정의 데이터 유형입니다.

구조는 배열과 유사합니다. 유일한 차이점은 배열은 동일한 데이터 유형을 저장하는 데 사용되는 반면 구조는 다른 데이터 유형을 저장하는 데 사용된다는 것입니다.

struct 키워드는 구조체를 선언하기 위한 것입니다.

구조체 내부의 변수는 구조체의 멤버입니다.

구조체는 다음과 같이 선언할 수 있습니다 -

Struct structurename{
   //member declaration
};

예시

다음은 구조체 변수에 접근하기 위한 C 프로그램입니다 -

struct book{
   int pages;
   float price;
   char author[20];
};
Accessing structure members in C
#include<stdio.h>
//Declaring structure//
struct{
   char name[50];
   int roll;
   float percentage;
   char grade[50];
}s1,s2;
void main(){
   //Reading User I/p//
   printf("enter Name of 1st student : ");
   gets(s1.name);
   printf("enter Roll number of 1st student : ");
   scanf("%d",&s1.roll);
   printf("Enter the average of 1st student : ");
   scanf("%f",&s1.percentage);
   printf("Enter grade status of 1st student : ");
   scanf("%s",s1.grade);
   //Printing O/p//
   printf("The name of 1st student is : %s\n",s1.name);
   printf("The roll number of 1st student is : %d\n",s1.roll);
   printf("The average of 1st student is : %f\n",s1.percentage);
   printf("The student 1 grade is : %s and percentage of %f\n",s1.grade,s1.percentage);
}

출력

위의 프로그램을 실행하면 다음과 같은 결과가 나온다 -

enter Name of 1st student: Bhanu
enter Roll number of 1st student: 2
Enter the average of 1st student: 68
Enter grade status of 1st student: A
The name of 1st student is: Bhanu
The roll number of 1st student is: 2
The average of 1st student is: 68.000000
The student 1 grade is: A and percentage of 68.000000