C++ examples for Function:Useful Function
Calling other programs with system() function
#include <cstdlib> // Declare "system()" using namespace std; int main() {/* w w w. j a va2s .c o m*/ system("Hello"); }