ANSWERS: 3
  • Don't know much, but maybe Google can say something: http://www.google.com/search?client=opera&rls=en&q=link+exe+files+in+c%2B%2B&sourceid=opera&ie=utf-8&oe=utf-8
  • sure there is if you do: [code] #include <windows.h> #include <iostream> int main() { WinExec("C:\Windows\System32\notepad.exe", SW_SHOWNORMAL); return 0; } [/code] The double-backslash is meant to keep it from not opening anything idk why it does that but just accept it. also SW_SHOWNORMAL just means to open it normally.
  • WinExec("C:\Windows\System32\notepad.exe", SW_SHOWNORMAL); Double-Backslashes are required. #include <windows.h> is needed for include.

Copyright 2023, Wired Ivy, LLC

Answerbag | Terms of Service | Privacy Policy