24 lines
946 B
C
Executable File
24 lines
946 B
C
Executable File
/*******************************************************/
|
|
/* p_fichier: Ce programme crée un nouveau */
|
|
/* processus avec fork */
|
|
/* - Le processus pere ouvre un nouveau fichier en */
|
|
/* création de nom donné en argument */
|
|
/* - Le processus fils écrit une chaine donnee en */
|
|
/* argument dans le fichier puis meurt */
|
|
/* - Le processus pere affiche le fichier puis meurt */
|
|
/* */
|
|
/* syntaxe : p_fichier fichier chaine */
|
|
/*******************************************************/
|
|
|
|
#include <stdio.h>
|
|
|
|
int main (int argc, char* argv[]) {
|
|
|
|
if (argc != 3) fprintf (stderr, "\nSyntaxe: %s <fichier> <chaine>\n\n", argv[0]);
|
|
|
|
/**********************/
|
|
/* PARTIE A COMPLETER */
|
|
/**********************/
|
|
|
|
}
|