0% found this document useful (0 votes)
24 views7 pages

1-From Start Menu Chose Visual Studio 2019. 2 - From The Window Chose Create A New Project

The document provides instructions for creating a new C++ project in Visual Studio 2019 and writing and running a simple C++ program. It outlines steps to open Visual Studio, create an empty project named after a desktop folder, add a C++ file, write code, build the solution to check for errors, and run the project to view output in the console window. The instructions guide a user through setting up their environment to begin writing C++ programs in Visual Studio.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
24 views7 pages

1-From Start Menu Chose Visual Studio 2019. 2 - From The Window Chose Create A New Project

The document provides instructions for creating a new C++ project in Visual Studio 2019 and writing and running a simple C++ program. It outlines steps to open Visual Studio, create an empty project named after a desktop folder, add a C++ file, write code, build the solution to check for errors, and run the project to view output in the console window. The instructions guide a user through setting up their environment to begin writing C++ programs in Visual Studio.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 7

Yarmouk University

Hijjawi Faculty for Engineering Technology


Computer Engineering Department
CPE 150: Introduction to Programming Lab
Task 01: Introduction

1- From start menu chose Visual Studio 2019.


2- From the window chose Create a new project.

3- Chose Empty Project, make sure the selected language is c++ then click on Next.
4- Type in a project name.

5- Click on brows (shaded in yellow) to change the location to your Desktop.

6- The following window will appear. Click on Desktop then on New folder.
Change the folder name to any appropriate name. click on select folder.
7- After finishing click on Create.

8- Your empty project is created now.


9- To add a c++ file, right click on Source files  Add  New Item.
10- From the window chose c++ file then change the name then click Add.

11- Now you are ready to write your C++ program.


12- After writing your code build the solution: Build  Build solution.

13- Result of building will appear in the Output tab, if there is no syntax errors then the
build will succeed.

14- After build succeeds you can Run your project: Debug  start without Debugging.
15- Your output will appear in the black console.

You might also like