#include #include int main(void) { printf("\n>>> Date de début: "); fflush(stdout); system("date"); printf("\n--- Entrée dans un shell ---\n"); system("sh"); printf("--- Sortie du shell --------\n"); printf("\n>>> Date de fin: "); fflush(stdout); system("date"); return EXIT_SUCCESS; }