24 lines
946 B
C
24 lines
946 B
C
|
/*******************************************************/
|
|||
|
/* p_fichier: Ce programme cr<63>e un nouveau */
|
|||
|
/* processus avec fork */
|
|||
|
/* - Le processus pere ouvre un nouveau fichier en */
|
|||
|
/* cr<63>ation de nom donn<6E> en argument */
|
|||
|
/* - Le processus fils <20>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 */
|
|||
|
/**********************/
|
|||
|
|
|||
|
}
|