Chapter 7: Problem 11
include
Short Answer
Step by step solution
Key Concepts
These are the key concepts you need to understand to accurately answer the question.
Chapter 7: Problem 11
include
These are the key concepts you need to understand to accurately answer the question.
All the tools & learning materials you need for study success - in one app.
Get started for freeGiven: enum currencyType \\{DOLLAR, POUND, FRANK, LIRA, MARK); currencyType currency; which of the following statements are valid? a. currency = DOLIAR b. \(\quad\) cin \(>>\) currency c. currency \(=\operatorname{static}_{-}\) cast \(\langle\text {currencyType }>(\text { currency }+1)\) d. for (currency = DOLLAR; currency \(<=\) MARK; currencyt+) cout \(<<\) "*";
include
include
include
Consider the following statement: string str = "Now is the time for the party!"; What is the output of the following statements? (Assume that all parts are independent of each other.) a. cout << str.size() << endl; b. cout << str.substr(7, 8) << endl; c. string::size_type ind = str.find('f'); string s = str.substr(ind + 4, 9); cout << s << endl; d. cout << str.insert(11, "best ") << endl; e. str.erase(16, 14); str.insert(16, "to study for the exam?"); cout << str << endl;
What do you think about this solution?
We value your feedback to improve our textbook solutions.