Advertisement
Guest User

Untitled

a guest
Aug 5th, 2017
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. #include <iostream>
  2. #include <string>
  3. #include <cstring>
  4. using namespace std;
  5. int main(int argc, char** argv)
  6. {
  7. const string *_username = new string("pau");
  8. const string *_password = new string("qwerty");
  9. char *username[sizeof(*_username) / sizeof(char)] = *_username.c_str();
  10. char *passowrd[sizeof(*_password) / sizeof(char)]; = *_password.c_str();
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement