Advertisement
Guest User

Untitled

a guest
Jul 18th, 2019
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. system("start notepad.exe");
  2.  
  3. #include <iostream>
  4.  
  5. int main (void){
  6.  
  7. system("start notepad.exe");
  8. std::string x;
  9. std::cin>>x;
  10. std::cout<<x;
  11. return 0;
  12. }
  13.  
  14. ShellExecute(NULL, "open", _T("notepad.exe"), NULL, NULL, SW_SHOWNORMAL);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement