A Moving to another question will save this response. uestion 61 void proper Cas
ID: 3578736 • Letter: A
Question
A Moving to another question will save this response. uestion 61 void proper Case (string); void proper Case (string&), void properCase (const string); 3. void properCase (const string&); int main string str("To WRIT WITH A BROKEN PENCIL IS poINTLESs. proper Case (str) str endl; To write with A Broken Pencil Is pointuess. At most one of the prototypes shown here is correct semanticalb. Which prototype should be left in place? O b, 1 d 4 A Moving to another question will save this response.Explanation / Answer
C.2
We want proper case of the given string. We need to make sure that even after executing the function we will have proper case. So, we need to use string& which actually modifies the string.