- 1
How to open your exe file? I used all possible functions like getch() ; and system ("pause") .... Still it's not waitng screen
1 Answer
0
#include <stdlib.h>
#include <stdio.h>
int main()
{
(void)system("C:WindowsSystem32notepad.exe");
return(0);
}