Advertisement
Guest User

Untitled

a guest
Jan 20th, 2017
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. // Code Written and maintained by Daniel Jajliardo @ TheTechSphere
  2. // Copywrite 2017 Daniel Jajliardo @ TheTechSphere
  3. // This is a small utiliy file.
  4. // Version 0.01 Updated 01/20/17 Daniel Jajliardo
  5.  
  6.  
  7. #include <string>
  8.  
  9. #pragma once
  10.  
  11. namespace smallutils {
  12.  
  13. static std::string intToString(int i) {
  14. char intStr[50];
  15. _itoa(i, intStr, 10);
  16. return std::string(intStr);
  17. }
  18. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement