Tools, FAQ, Tutorials:
C++ Console Application with Visual Studio 2017
How to write a C++ console application with Visual Studio 2017?
✍: FYIcenter.com
A console application runs in a Windows command console without any graphical user interface.
You can follow tutorial to write your first new console application in C++ with Visual Studio 2017.
1. Start Visual Studio 2017 with Visual C++ development environment.
2. Click "File > New > Project" menu.
3. Select the project type as "Win32 Console Application",
4. Enter the following project name and location:
Name: Hello-Project Location: c:\fyicenter\vc2017\Projects Solution name: Hello-Solution
5. Click "OK" and follow the Win32 Application Wizard to finish creating the project.
6. Enter the following C++ code in the Hello-Project.cpp file created by Visual Studio.
// Hello-Project.cpp : Defines the entry point for the console application. // #include "stdafx.h" #include <iostream> using namespace std; int main() { cout << "Hello World!"; return 0; }
Â
⇒First C++ Program in Visual Studio 2017
⇒⇒Visual Studio Tutorials
2017-08-07, 1537👍, 0💬
Popular Posts:
How to use "json-to-xml" Azure API Policy Statement? The "json-to-xml" Policy Statement allows you t...
How to use the "forward-request" Policy Statement to call the backend service for an Azure API servi...
What is Azure API Management Publisher Dashboard? Azure API Management Publisher Dashboard is an Azu...
How to build a test service operation to dump everything from the "context.Request" object in the re...
How to use the "send-one-way-request" Policy statement to call an extra web service for an Azure API...