Advertisement
Guest User

Untitled

a guest
Oct 12th, 2017
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. 'stoi' was not declared in this scope
  2.  
  3. string str = "5678906576";
  4. cout << atoi(str.c_str())<< endl;
  5.  
  6. string str = "5678906576";
  7. cout << QString::fromStdString(str).toInt() << endl;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement