반응형
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- 리액트
- 프로그래밍
- 리트코드
- dp
- sql
- javascript
- react
- Level2
- 배열
- C++
- VUE
- LeetCode
- OS
- 자바스크립트
- CS
- python
- Medium
- Level1
- Level3
- 카카오
- 파이썬
- web
- 백준
- 프로그래머스
- 코테연습
- Doitvue.js입문
- typescript
- 동적계획법
- 고득점Kit
- 웹프로그래밍
Archives
- Today
- Total
반응형
목록dynamicmemory (1)
[c++] dynamic memory allocation (동적 메모리 할당)
배열 동적 메모리 할당 int* p; int length, total = 0; float average; cin >> length; p = new int[length]; //동적 메모리 할당 for (auto i = 0; i > *(p + i); for (auto i = 0; i < length; ++i) total = total + p[i]; average = total / (double)length; cout
객체지향프로그래밍 (C++)
2020. 7. 3. 15:16
반응형