Call system command: dir : System Command « Development « C / ANSI-C






Call system command: dir

Call system command: dir
#include <stdlib.h>

int main(void)
{
  return system("dir");
}



           
       








Related examples in the same category

1. Execute system command: dir, copy and so on