Skip to content

Latest commit

 

History

History
25 lines (23 loc) · 1.27 KB

console-applications-in-visual-cpp.md

File metadata and controls

25 lines (23 loc) · 1.27 KB
title ms.custom ms.date ms.reviewer ms.suite ms.technology ms.tgt_pltfrm ms.topic dev_langs ms.assetid caps.latest.revision author ms.author manager
Console Applications in Visual C++ | Microsoft Docs
11/04/2016
cpp-windows
article
C++
3071307f-af0d-489a-8e20-02acded7fc66
10
mikeblome
mblome
ghogen

Console Applications in Visual C++

A console application accepts input and sends output to the console, which is also known as the command prompt. You can create console apps to do basic work or to perform very sophisticated tasks. You can also use a console app as a proof-of-concept demonstration of functionality that you later want to incorporate into a Windows desktop application or Universal Windows Platform App. Console apps can communicate with other desktop apps by means of pipes or other RPC mechanisms.

Related Articles

Title Description
Walkthrough: Creating a Standard C++ Program (C++) Describes how to create a console application that users can run from the command line.
Creating a Console Application Provides information about console applications.