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;
}
⇒ Visual Studio Error: Windows SDK Version 8.1 not Found
⇐ Create C++ Project with Visual Studio 2017
2023-12-01, ∼2890🔥, 0💬
Popular Posts:
Where to find tutorials on Python programming language? I want to learn Python. Here is a large coll...
What is Azure API Management Developer Portal? Azure API Management Developer Portal is an Azure Web...
How to read RSS validation errors at w3.org? If your RSS feed has errors, the RSS validator at w3.or...
What validation keywords I can use in JSON Schema to specifically validate JSON Array values? The cu...
How To Copy Array Values to a List of Variables in PHP? If you want copy all values of an array to a...