fork download
  1. // Kalkulatorr.cpp : main project file.
  2.  
  3. #include "stdafx.h"
  4. #include "Form1.h"
  5. #include "Calc.h"
  6. #include "string"
  7. ;
  8. using namespace Kalkulatorr;
  9. using namespace std;
  10.  
  11. [STAThreadAttribute]
  12. int main(array<System::String ^> ^args)
  13. {
  14. // Enabling Windows XP visual effects before any controls are created
  15. Application::EnableVisualStyles();
  16. Application::SetCompatibleTextRenderingDefault(false);
  17.  
  18. // Create the main window and run it
  19. Application::Run(gcnew Form1());
  20. return 0;
  21. }
  22.  
Compilation error #stdin compilation error #stdout 0s 0KB
stdin
Standard input is empty
compilation info
prog.cpp:3:20: fatal error: stdafx.h: No such file or directory
 #include "stdafx.h"
                    ^
compilation terminated.
stdout
Standard output is empty