구조체 초기화

2019. 5. 11. 22:56알고리즘/암기

1
2
3
4
5
6
7
8
9
#include <string.h>
 
int main(void) {
    struct shape a, b;
    memset(&a, 0sizeof(struct shape));
    memset(&b, 0sizeof(struct shape));
    
    ....
}
cs

'알고리즘 > 암기' 카테고리의 다른 글

Disjoint-set  (0) 2019.05.14
구조체를 활용한 priority_queue 비교함수  (0) 2019.05.14
입력 갯수를 확인하는 2가지 방법  (0) 2019.05.08
string class 함수  (0) 2019.05.02
에라토스테네스의 체 시간복잡도  (0) 2019.04.29