C 언어 변수배열구조체.c
#include <stdio.h>
// 정수와 문자를 같이 보관하는 그릇
struct MyStruct
{
int i;
char c;
float f;
};
void main(void)
{
//[1] 변수
int i = 10;
//[2] 배열
int arr[3] = {10, 20, 30};
//[3] 구조체 형식의 변수
struct MyStruct my; // struct 구조체이름 구조체변수명;
my.i = 100;
my.c = 'A';
my.f = 12.34;
//[!] 출력
printf("%d %c %.2f\n", my.i, my.c, my.f); // 구조체변수
}
Comments
Comments are closed