clrscr이 안먹힙니다
통꽃
2023.04.01
#include conio.h한다음에
clrscr();
했는데도IntelliSense: 식별자 clrscr이(가) 정의되어 있지 않습니다.
이런 오류가 나오네요 뭐가 잘못된걸까요?
-----------------------------------------------------------------------------#include stdio.h#include time.h#include conio.h
void main(){ for (;;){ time_t t;
time(&t); printf(현재시간은 %s입니다.\n,ctime(&t));; clrscr(); if (getchar()) break; ;}}------------------------------------------------------------------------------