C++ - 터미널의 특정 위치에 문자열 출력하기프로그래밍 노트/C&C++2020. 12. 10. 22:29
Table of Contents
반응형
터미널의 특정 위치에 문자열을 출력하는 방법을 다루고 있습니다.
2020. 12. 10 최초작성
#include <iostream> #include <string> #include <stdarg.h> void printToCoordinates(int y, int x, const char* format, ...) { va_list args; va_start(args, format); printf("\033[%d;%dH", y, x); vprintf(format, args); va_end(args); fflush(stdout); } int main() { #ifdef _MSC_VER system("cls"); #else system("clear"); #endif for ( int i=0; i<1000000; i++) { printToCoordinates(5, 10, "a1 %d", i); printToCoordinates(7, 10, "a2 %d", i); printToCoordinates(9, 10, "a3 %d", i); } return 0; } |
Visual Studio에서 생성한 콘솔 프로그램과 Ubuntu에서 동일하게 동작합니다.
참고
https://stackoverflow.com/a/1670910
반응형
'프로그래밍 노트 > C&C++' 카테고리의 다른 글
C++ shared_ptr 예제, 사용방법 (0) | 2021.01.01 |
---|---|
C++ localtime 사용하여 현재 날짜, 시간 출력하기 (Windows/Linux) (0) | 2020.12.11 |
C++ 클래스에서 static 멤버변수 초기화 (0) | 2020.09.01 |
linux echo server ( pthread 사용 ) (0) | 2015.11.14 |
디렉토리에서 특정 문자열로 시작하는 엔트리 읽어오기 (0) | 2015.01.22 |