Question: C++. please do it all and the reading exercise. thank you Output screen snapshots are also required Word document explains the answers for each part
Output screen snapshots are also required Word document explains the answers for each part and instructions for running the programs. Please write your name and student ID at the top of the word document Programming Exercise (Creating, compiling, and running a C++ program) Create a source file containing a C++ program. Perform the following steps to compile the program and run it: 1) Create a file named Welcome.cpp. You can use any editor that will save your file in text format. 2) Compile the source file. 3) Run the program. 4) The program should print "Welcome to C++ " on the screen. 5) Replace "Welcome to C++ " with "My first program" in the program; save, compile, and run the program. You will see the message "My first program" displayed. 6) Replace main with Main, and recompile the source code. The compiler returns an error message because the C++ program is case-sensitive. 7) Change it back, and compile the program again. 8) Instead of the command cl Welcome.cpp, use cl welcome.cpp. What happens? 9) Instead of the command Welcome, use Welcome.exe. What happens? Reading Exercise Read chapter 1. Propose 612 keywords. Compose 23 sentences to describe each chapter in a concise, comprehensive, and unambiguous manner
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
