Advertisement
piffy

tre_modi

Aug 30th, 2014
331
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.31 KB | None | 0 0
  1. #include <windows.h>
  2. #include <process.h>
  3. #include <stdio.h>
  4.  
  5. int main ()
  6. {
  7. // Tre modi per eseguire un programma, "old style"
  8. system("notepad");
  9.  
  10. int nRet= _spawnl( _P_WAIT, "c:\\windows\\notepad.exe", "notepad", 0 );
  11.  
  12. int nRet1= _execl(  "c:\\windows\\notepad.exe", "notepad", 0 );
  13.     return 0;  
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement