출처 : https://drdbg.com/115
Visual Studio 2015 이상 버전에서 이전 버전의 lib 링크 시 발생하는 에러.
stdin ,stdout,stderr의 IO 변경으로 인한 것이므로,
"에러가 발생하는" 프로젝트 상단에, 아래 코드를 추가해준다.
extern "C" { FILE __iob_func[3] = { stdin ,stdout,stderr }; }