can you give me a clear explaination of the function stoi()? And what does nullptr mean? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 11

can you give me a clear explaination of the function stoi()? And what does nullptr mean?

16th Apr 2017, 12:37 PM
Umbe
Umbe - avatar
4 Answers
+ 21
stoi() has been labelled as unreliable and inaccurate given certain inputs according to Stack Overflow. Obtaining your desired values should be done via other means. Be sure to declare the variable that will store the string to be converted as an int. string simplestring = "a string"; int strToInt = stoi(simplestring.c_str()); It also helps to remember the purpose of stoi() by separating the letters like this: s - to - i ... to stand for "string to integer". But to be honest, I find that problems are less occurant if you're to instead modify the string by assigning it to an int as a typecasted int, while at the same time using the ASCII table to convert it. For example... int typeCastedStr = 0; string strToInt = "abcdef"; for (int x = 0; x < strToInt.length(); x++) typeCastedStr += (int)strToInt.at(x) - 87; I do this a few times in one of my programs. It's especially helpful when converting between hexadecimal, decimal, and vice-versa. This would be a good time to introduce "stringstream", but I'll leave that for you to look into in your own time.
17th Apr 2017, 11:50 PM
Fox
Fox - avatar
+ 11
stoi() or string to integer is a function that conversation a string to an integer value and returns that value. A nullptr or Null pointer is just a pointer which has been set to point to NULL or nothing.
16th Apr 2017, 2:20 PM
SoraKatadzuma
SoraKatadzuma - avatar
+ 10
thenks :D
18th Apr 2017, 9:49 AM
Umbe
Umbe - avatar