Compile code and communicate that application was installed

Assignment Help C/C++ Programming
Reference no: EM131123893

Simplee c++ program

Programming

Download and install the appropriate C++ development software based on your operating system as specified in the announcements and Instructor Guidance.

Depending on your operating system, you may need to download and run alternate software. XP users may need the following patch to get the Microsoft Visual Studio 2005 Express Editions Service Pack 1 software to run: Service Pack 1. Windows Vista and Windows 7 users are advised to download a similar opensource C++ program: DEV C++ by Bloodshed, instead of the software provided with the text.

The zip folder with the headers only need to be installed if you are installing Visual Studio.

Students using Visual Studio need to copy the zip file that provides the C++ libraries: Libraries.zip. Please read these Instructions on downloading the zip files to your hard drive.

As part of this exercise you will also use the sample code below to test the application, compile the code and communicate that your application was installed and working.

This is the sample code:

#include <iostream>

#include <string>

using namespace std;

int main()

{

string str1("Alpha");

string str2("Beta");

string str3("Omega");

string str4;

// assign a string

str4 = str1;

cout << str1 << "\n" << str3 << "\n";

// concatenate two strings

str4 = str1 + str2;

cout << str4 << "\n";

// concatenate a string with a C-string

str4 = str1 + " to " + str3;

cout << str4 << "\n";

// compare strings

if(str3 > str1) cout << "str3 > str1\n";

if(str3 == str1+str2)

cout << "str3 == str1+str2\n";

/* A string object can also be

assigned a normal string. */

str1 = "This is a null-terminated string.\n";

cout << str1;

// create a string object using another string object

string str5(str1);

cout << str5;

// input a string

cout << "Enter a string: ";

cin >> str5;

cout << str5;

system("pause");

return 0;

}

The code above is a simple program that will output some string statements and then ask for one input and close after you enter text and then hit enter.

Try to change the text once you are successful and rename your source file. Play around with the strings. Report your experience and your efforts to the discussion board.

Reference no: EM131123893

Questions Cloud

Fmv tax adjusted basis appreciation : Robert and Sylvia propose to have their corporation, Wolverine Universal (WU), acquire another corporation, EMU, Inc., in a stock-for-stock Type B acquisition. The sole shareholder of EMU, Edie Eagle, will receive $400,000 of WU voting stock in the t..
What french general was called the hero of two worlds : What French general was called the hero of two worlds, because he was prominent in both the American Revolution and the French Revolution?
Find the date of the maximum number of hours of daylight : Find the date of the maximum number of hours of daylight for cities at 40°N See Exercise 75 on page 314.
The research or the interpretation of data : In any project, there is a possibility that bias will creep into either the research or the interpretation of data. How would you prevent this from happening, depending on the research method you are using? What are the possible roadblocks to rec..
Compile code and communicate that application was installed : As part of this exercise you will also use the sample code below to test the application, compile the code and communicate that your application was installed and working.
Find the velocity at which the part is moved after 5.0 s : find the velocity at which the part is moved after 5.0 s of each period.
Positive reinforcement case study : After reviewing the case study labeled "Level B Case 1" and the STAR sheets in Encouraging Appropriate Behavior, write a one- to two-page summary in which you:
Unification of most of modern day china under rule : China changed irreversibly in 1207 AD when what group of people began a 60 year conquest that saw the unification of most of modern day China under their rule?
What is the name given to the colored part of the human eye : What is the name given to the colored part of the human eye that controls how much light passes through the pupil

Reviews

Write a Review

C/C++ Programming Questions & Answers

  Create program that uses functions and reference parameters

Create program that uses functions and reference parameters, and asks user for the outside temperature.

  Write a program using vectors and iterators

Write a program using vectors and iterators that allows a user to maintain a personal list of DVD titles

  Write the code required to analyse and display the data

Calculate and store the average for each row and column. Determine and store the values for the Average Map.

  Write a webservices application

Write a webservices application that does a simple four function calculator

  Iimplement a client-server of the game

Iimplement a client-server version of the rock-paper-scissors-lizard-Spock game.

  Model-view-controller

Explain Model-View-Controller paradigm

  Design a nested program

How many levels of nesting are there in this design?

  Convert celsius temperatures to fahrenheit temperatures

Write a C++ program that converts Celsius Temperatures to Fahrenheit Temperatures.

  Evaluate and output the value in the given base

Write C program that will input two values from the user that are a Value and a Base with which you will evaluate and output the Value in the given Base.

  Design a base class shape with virtual functions

Design a base class shape with virtual functions

  Implementation of classes

Implementation of classes Chart and BarChart. Class barChart chould display a simple textual representation of the data

  Technical paper: memory management

Technical Paper: Memory Management, The intent of this paper is to provide you with an in depth knowledge of how memory is used in executing, your programs and its critical support for applications.

Free Assignment Quote

Assured A++ Grade

Get guaranteed satisfaction & time on delivery in every assignment order you paid with us! We ensure premium quality solution document along with free turntin report!

All rights reserved! Copyrights ©2019-2020 ExpertsMind IT Educational Pvt Ltd