an application program that can be Run using another program
Answers
Answered by
0
The system() function directs your program to run another program or to issue a command. For example: system("blorf"); The preceding statement directs the operating system to issue the blorf command, running whatever program has that name or carrying out whatever actions the blorf command dictates. The system() function directs your program to run another program or to issue a command. For example: system("blorf"); The preceding statement directs the operating system to issue the blorf command, running whatever program has that name or carrying out whatever actions the blorf command dictates.
Similar questions