Calling other programs with system() function - C++ Function

C++ examples for Function:Useful Function

Description

Calling other programs with system() function

Demo Code

#include <cstdlib> // Declare "system()"
using namespace std;
int main() {/*  w  w  w.  j  a va2s  .c  o  m*/
   system("Hello");
}

Result


Related Tutorials