Guest User

Untitled

a guest
Jun 13th, 2018
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. char pText[x];
  2. sprintf(pText, "helloworld %d", Count );
  3.  
  4. char pText[12];
  5. snprintf(pText, sizeof pText, "helloworld %d", count);
  6.  
  7. vector<char> vecMyObj(10);
  8. vecMyObj.resize(10);
  9. sprintf(&vecMyObj[0],"helloworld %d", count);
Add Comment
Please, Sign In to add comment