반응형

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 = { 1127 };
    v.x++;
    v.y = v.y + 3;
 
    // Print result
    printf("x: %d    y: %d\n", v.x, v.y);
}
 
cs

 

 

 

반응형