반응형

c언어 구조체(struct) 선언 후 함수 활용

 

 

c언어 구조체(struct) 선언 후 구조체 함수 활용

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/* Struct demo */
#include <stdio.h>
 
// 'object' vehicle
struct vehicle { int x, y; };
 
// Move vehicle
struct vehicle move(struct vehicle v, int vx, int vy) {
    v.x = v.x + vx;
    v.y = v.y + vy;
    return v;
}
 
int main() {
 
    // move struct object vehicle
    struct vehicle truck = { 1127 };
    truck = move(truck, 13);
 
    // Print result
    printf("truck -  x: %d,  y: %d\n", truck.x, truck.y);
}
 
cs

 

 

 

반응형