Introduction Visual studio를 사용하면서 아래와 같은 오류를 접하게 됩니다. 아래의 간단한 오류에 대해 알아보고 해결방법에 대해 확인해보도록 하겠습니다. 원인과 해결방법 #Source code #include #include using namespace std; void main() { FILE *p = fopen("test.txt", "W"); // ... } #Error message C4996 ‘xxxx': This function or variable may be unsafe. Consider using xxxxx instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details. #..