Files
M311-Principes-des-systemes…/2019-2020/S3T_TP_00_REVISIONS/Demo_make/bonjour.c
JunkJumper cf00c53e65 "debut TD0"
2020-09-04 10:27:13 +02:00

10 lines
231 B
C
Executable File

#include <stdio.h>
#include <stdlib.h>
#include "util_afficher.h"
int main (int argc, char * argv[], char * envp[])
{
if (argc != 2) {fprintf (stderr, "\nSyntaxe : %s <chaine> \n\n"); exit (1); }
afficher_chaine(argv[1]);
}