Kommentar
Åtkomst till den här sidan kräver auktorisering. Du kan prova att logga in eller ändra kataloger.
Åtkomst till den här sidan kräver auktorisering. Du kan prova att ändra kataloger.
Now that we have learned about the Visual Studio IDE, we are ready to start writing programs with Visual C++. The first types of application we will learn to create are command-line applications. A command-line application does not contain a graphical user interface (GUI). Typically, command-line applications read input from the console and write output to the console instead of to a graphical window.
In this section you will learn how to create both C and C++ command-line applications. You will also learn how to create standard C and C++ programs that do not use Microsoft extensions. This is useful if you want to use Visual C++ to create applications for use on other operating systems.
Prerequisites
These topics assume that you understand the fundamentals of the C++ language.
In This Section
Next Steps
Previous:Deploying Your Program (C+) | Next:Creating a Standard C++ Program (C+)