Question: In order to convert a string containing digits (such as converting the string 1249 to the integer 1249), which of the following expressions can be

In order to convert a string containing digits (such as converting the string "1249" to the integer 1249), which of the following expressions can be used? Assume the following variables have been defined: string mystring = "1249"; int myInt; O myint = mystring.convert();) O myint = atoi (mystring.c_str());) o myint = mystring.c_str(); o myint = mystring.atoi();)
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
