✅ 목표 (Goal)

pritnf를 이용하여 이런것도 만들수 있다.

예전에는 많이 사용되었지만, 지금은 아무도 안쓴다.

혹시 쓰나?

✅ printf와 특수문자를 이용한 테이블 만들기

#include <stdio.h>

int main() {
    printf("╔═════════════════════╦════════════════╦═════════════════════╗\\n");
    printf("║ 영화명              ║ 감독명         ║ 주연                ║\\n");
    printf("╠═════════════════════╬════════════════╬═════════════════════╣\\n");
    printf("║ Interstellar        ║ Christopher Nolan ║ Matthew McConaughey ║\\n");
    printf("║ Parasite            ║ Bong Joon-ho    ║ Song Kang-ho        ║\\n");
    printf("║ The Shawshank       ║ Frank Darabont  ║ Tim Robbins         ║\\n");
    printf("╚═════════════════════╩════════════════╩═════════════════════╝\\n");

    return 0;
}

✅ TUI (Text User Interface)

Midnight Commander

image.png

gizak/termui

dashboard.gif

▼ 출처

https://appliedgo.net/tui/