WINAPI) std::vector 와 std::string 을 사용한 간단한 메모장
std::vector 와 std::string 은 둘다 가변적이기 때문에 배열의 동적 할당없이 ( 물론 내부적으론 동적할당이 이루어 지지만 )메모장같은 가로 + 세로를 나타내기에 적합함 1234567891011121314151617181920212223242526272829303132333435363738394041424344LRESULT CALLBACK WndProc(HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam){ PAINTSTRUCT ps; HDC hDC; static std::vector vecstr; switch (uMsg) { case WM_CREATE: { vecstr.push_back(std::string()); break; } case WM_P..