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 |
시간날때마다 틈틈이 이것저것 해보며 블로그에 글을 남깁니다.
블로그의 문서는 종종 최신 버전으로 업데이트됩니다.
여유 시간이 날때 진행하는 거라 언제 진행될지는 알 수 없습니다.
영화,책, 생각등을 올리는 블로그도 운영하고 있습니다.
https://freewriting2024.tistory.com
제가 쓴 책도 한번 검토해보세요 ^^
@webnautes :: 멈춤보단 천천히라도
그렇게 천천히 걸으면서도 그렇게 빨리 앞으로 나갈 수 있다는 건.
포스팅이 좋았다면 "좋아요❤️" 또는 "구독👍🏻" 해주세요!