Developpement/23DEV1.1/TPS1/TP01/14-ChainesDeCaractères/Initiales.c

11 lines
182 B
C
Raw Normal View History

2024-12-09 11:53:11 +01:00
#include <stdlib.h>
#include <stdio.h>
int main(int argc, char** argv) {
if (argc > 2) {
puts(argv[2]);
} else {
puts("aucun argument !");
}
return EXIT_SUCCESS;
}