Stdlib h C Tutorial

Item Value
Header filestdlib.h
Declarationint system(const char *str);
Functionpasses the string as a command to the command processor.
Returnzero on success or nonzero on error.
Display the contents of the current working directory in window system:

#include 
  int main(void)
  {
    printf("%s",system("dir"));
  }