Tools, FAQ, Tutorials:
Build Console Application with Visual Studio 2017
How to build a console application with Visual Studio 2017?
✍: FYIcenter.com
If you have created a console application project, and finished coding in the C++ source file, you can follow this tutorial to build the console application in debug mode:
1. Click "Build > Build Solution" menu. You see project build messages showing up in the output box below the source code.
1>------ Build started: Project: Hello-Project, Configuration: Debug Win32 ------ 1>Hello-Project.vcxproj -> C:\fyicenter\vc2017\Projects\Hello-Solution\Debug\Hello-Project.exe 1>Hello-Project.vcxproj -> C:\fyicenter\vc2017\Projects\Hello-Solution\Debug\Hello-Project.pdb (Partial PDB) ========== Build: 1 succeeded, 0 failed, 0 up-to-date, 0 skipped ==========
2. Go to a command console and run:
>C:\fyicenter\vc2017\Projects\Hello-Solution\Debug\Hello-Project.exe Hello World!
⇒ Application Release Build with Visual Studio 2017
2023-10-27, 1551🔥, 0💬
Popular Posts:
How To Read Data from Keyboard (Standard Input) in PHP? If you want to read data from the standard i...
How To Convert a Character to an ASCII Value? If you want to convert characters to ASCII values, you...
What Azure AD App Registration Manifest? Azure AD App Registration Manifest is JSON file that contai...
How To Loop through an Array without Using "foreach" in PHP? PHP offers the following functions to a...
How to reinstall npm with a node version manager? I am getting permission errors with the current ve...