Guest User

Untitled

a guest
May 21st, 2018
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. #include <string>
  2. #include <iostream>
  3.  
  4. int main(int,char**){
  5. //[Error] 'to_string' is not a member of 'std'
  6. std::cout << std::to_string(10);
  7.  
  8. std::string s = "12";
  9. //[Error] 'stoi' is not a member of 'std'
  10. std::cout << std::stoi(s);
  11. }
Add Comment
Please, Sign In to add comment