Question: 3) Given the C++ code: size_t position1, position2; string myString = alpaca; position1 = myString.find('z'); position2 = myString.find('c'); The value of position1 after this code
3) Given the C++ code:
size_t position1, position2; string myString = "alpaca"; position1 = myString.find('z'); position2 = myString.find('c');
The value of position1 after this code is run will be: The value of position2 after this code is run will be:

Please help with just the first part the code is incorrect.
Given the C++ code: size_t positioni, position2; string myString = "alpaca"; position1 = myString.find('z'); position2 = myString.find('c'); The value of position1 after this code is run will be: 1 The value of position2 after this code is run will be: 4
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
