Exécuter une commande Shell à l’aide ‘system’

Author:


Download

/*
#include 
int system ( const char *s  );
 
*/
  #include 
  #include 
  int main(void)
  {
    printf("%s",system("dir"));
 
return 0;
 
  }