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

  Write a c matrix multiplication program which you can

write a c matrix multiplication program which you can instrument to monitor and measure execution time as a function of

  Create a vector class implementing a number of vector

Create a Vector class incorporating the following features

  Write c++ statements that remove all the items

write C++ statements that remove all the items from storeBag and place them into one of two new bags, as follows: Place all occurrences of bread and eggs into fragileBag, and all other items into groceryBag.

  Demonstrates steps to analyze the problem

Demonstrates your thought process and steps used to analyze the problem. Be sure to include the required input and output and how you will obtain the required output from the given input

  Extract individual digits or sequences of digits from it.

Given a large number we sometimes need to extract individual digits or sequences of digits from it. For example, given a four-digit year (2010) we may need to extract just the two-digit year or the century.

  Throws an exception from a deeply nested

Write a program that throws an exception from a deeply nested function and still has the catch handler following the try block enclosing the initial call in main catch the exception

  Write library in c which reads calendar files

Cumulative assignment where first we had to write library in C which reads calendar files and interpret the data.

  Write a recursive function to draw the pattern

write a program that prompts the user to enter the number of lines in the pattern and uses the recursive function to generate the pattern. For example, specifying 4 as the number of lines generates the above pattern.

  Create a c++ function named pathexists

Write a C++ function named pathExists that determines whether or not a there's a path from start to finish in a 10x10 maze. A 2-dimensional 10x10 character array of Xs and dots that represents the maze. Each 'X' represents a wall, and each '.' rep..

  This program need to be writen in c in this program we need

this program need to be writen in c in this program we need to create program that uses functions and reference

  Write a program that keeps an employee database

Using C++, Write a program that keeps an employee database in a random-access file. Implement functions for adding and removing employees. You need not keep employees in sorted order.

  What is the output of this c code

What is the output of this C code?

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