what is system function in c

Solutions on MaxInterview for what is system function in c by the best coders in the world

showing results for - "what is system function in c"
Klara
09 May 2017
1The system() function is a part of the C/C++ standard library. It is used to pass the commands that can be executed in the command processor or the terminal of the operating system, and finally returns the command after it has been completed.
2
3<stdlib.h> or <cstdlib> should be included to call this function