C11에 들어서면서 C언어도 정식으로 스레드를 지원하기 시작했습니다. #include 만 해 주시면 모든 준비가 끝납니다. #include #include #include int func() { thrd_sleep(&(struct timespec){.tv_sec=3}, NULL); puts("func()"); } int main() { thrd_t thread; // 스레드 타입 변수 int result; // 결과값 thrd_create(&thread, func, NULL); thrd_join(thread, &result); printf("result: %d", result); } 간단합니다. C++에서처럼 thrd_t 변수를 선언하고, thrd_create를 통해 스레드를 생성합니다. int thrd..