
Concept explainers
Please provide the function or module header in in c++ code for each of the following. Include comments that describe the parameters and return values (if a value is returned). Do not define the function, just give the header or prototype and comments. Be sure to indicate if the parameters need to be passed by reference.
1. Swaps two reals.
2. Calculates and returns the sales tax of 8.25 given the price and the amount of the tax rate (both as reals).
3. Returns the concatenation of two strings.
4. Performs a search of a string for a character and returns true if the character is found and false otherwise.
void swap(int&,int&);//used to swap two integers.parameters are passed by reference
float calculate(float,float);//returns the sales tax of 8.25 given the price and the amount of the tax rate
string combine(string ,string );//returns the concatenated string of given strings
bool find(string ,char );//checks for the given character in the string and returns true if string have the given character otherwise false.

Step by stepSolved in 2 steps

- Instructions: For each Exercise below, write your code in an IDE and run your code within the IDE as well. Once you have satisfied the Exercise requirements, paste your code below under the corresponding Exercise. Exercise 1: Please perform in C++ Write a program using a function which will accept two integers as an argument and return sum. Call this function from the main function and print the results in the main function! This is a nice and easy warm up to functions! ● ●arrow_forward2. Please provide the correct C++ code compatible with Visual Studio for the following question:arrow_forwardCreate a function in C language that takes two integers x, and y as the parameters and returns the sum and the absolute difference of both the numbers but the return type of the function should be void. You can add extra parameters to the function but the function should not return anything and should send the required values as well. Test your function for the numbers 10, and 5 inside the main function.arrow_forward
- Please circle True or False for each of the following statements. C++ Local variables used in a function are defined in the parameter list of that functions definition. TRUE FALSEarrow_forwardThe parameters passed to function are .called formal parameters True O Fales Oarrow_forwardWrite a function named product that takes two int parameters and returns the product of those two integers. Here is an example: int n = product(7, 5); // n is 35 We are providing a test framework that, if you wish, you may use with a compiler to test your function. What you will submit as your answer to this problem is only the product function. Do not submit things like the #include lines or a main routine. If we take the code you write in the space below and insert it into the program, the resulting program must build without compilation errors (mere warnings are allowed). You do not need to write comments in the code; we will not look at any comments. Here is the test framework that you may copy and paste into a C++ source file. For your own testing purposes, you might add additional tests in the main routine, although you won't be turning them in, of course. #include <iostream> #include <cassert> using namespace std; // SUBMIT AS YOUR ANSWER ONLY THE CODE BETWEEN THIS…arrow_forward
- Computer Networking: A Top-Down Approach (7th Edi...Computer EngineeringISBN:9780133594140Author:James Kurose, Keith RossPublisher:PEARSONComputer Organization and Design MIPS Edition, Fi...Computer EngineeringISBN:9780124077263Author:David A. Patterson, John L. HennessyPublisher:Elsevier ScienceNetwork+ Guide to Networks (MindTap Course List)Computer EngineeringISBN:9781337569330Author:Jill West, Tamara Dean, Jean AndrewsPublisher:Cengage Learning
- Concepts of Database ManagementComputer EngineeringISBN:9781337093422Author:Joy L. Starks, Philip J. Pratt, Mary Z. LastPublisher:Cengage LearningPrelude to ProgrammingComputer EngineeringISBN:9780133750423Author:VENIT, StewartPublisher:Pearson EducationSc Business Data Communications and Networking, T...Computer EngineeringISBN:9781119368830Author:FITZGERALDPublisher:WILEY





