C
[C] 콘솔창 설정( 사이즈 변경, 제목 변경 )
berabue
2011. 8. 5. 10:53
|
사이즈 변경방법 - 원하는 숫자로 변경
system("mode con:cols=50 lines=30");
제목 변경
system("title 제목");
|