0
Скажите почему Visual Studio требует #include"stdafx.h". Без неё ошибка, а Code::Bloks наоборот, с этой строкой не работает?
2 Respuestas
+ 6
Translate :
Tell me why Visual Studio requires #include "stdafx.h". Without it an error, and Code :: Bloks on the contrary, with this line does not work?
+ 1
stdafx.h is a build-in project's file. It is using when 'Use precompiled headers' option is turned on in VisualStudio. If do not need precompiled headers, just turn this option off in the C++\Precompile headers menu of project's settings.