반응형
c언어 구조체
c언어 구조체 정의 및 변수 활용
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
/* Struct demo */
#include <stdio.h>
// 'object' vehicle
struct vehicle { int x, y; };
int main() {
// Move vehicle
struct vehicle v = { 11, 27 };
v.x++;
v.y = v.y + 3;
// Print result
printf("x: %d y: %d\n", v.x, v.y);
}
|
cs |
반응형
'C 언어 > C언어 기초' 카테고리의 다른 글
[C언어 #37] 포인터 (pointer) (0) | 2020.07.07 |
---|---|
[C언어 #36] 구조체 (struct) 함수 활용 (0) | 2020.07.07 |
[C언어 #31_2] 비만도 (BMI) 계산 (0) | 2020.07.06 |
[C언어 #34] 10진수를 2진수로 변환 (decimal and binary conversion) (0) | 2020.07.03 |
[C언어 #33] Segfault (Segmentation Fault) (0) | 2020.07.03 |