Solution Review: Convert String Into an Integer
Follow the step-by-step instructions to convert a string into an integer.
We'll cover the following...
We'll cover the following...
Solution
Press the RUN button and see the output!
Explanation
We will traverse the characters in the given string, str, and convert any digits into integers. Otherwise, we will simply return -1 to the calling point.
Line 15: Initializes the ...