Initial commit
This commit is contained in:
commit
7b176ca150
|
@ -0,0 +1,15 @@
|
|||
PROG_NAME=args_count
|
||||
BASE=/usr/local
|
||||
|
||||
|
||||
$(PROG_NAME): ./src/$(PROG_NAME).c
|
||||
$(CC) $< -o ./bin/$(PROG_NAME)
|
||||
|
||||
install:
|
||||
install ./bin/$(PROG_NAME) $(BASE)/bin/$(PROG_NAME)
|
||||
|
||||
deinstall:
|
||||
rm -fr $(BASE)/bin/$(PROG_NAME)
|
||||
|
||||
clean:
|
||||
rm -fr ./bin/*
|
|
@ -0,0 +1,17 @@
|
|||
#include <stdlib.h>
|
||||
#include <stdio.h>
|
||||
|
||||
|
||||
int
|
||||
main(int argc, char *argv[]) {
|
||||
if ( argc == 0)
|
||||
{
|
||||
printf("Le nombre d'arguments est 1 \n");
|
||||
}
|
||||
else
|
||||
{
|
||||
printf("Le nombre d'arguments est de : %d \n", argc);
|
||||
}
|
||||
|
||||
exit (EXIT_SUCCESS);
|
||||
}
|
|
@ -0,0 +1,17 @@
|
|||
#include <stdlib.h>
|
||||
#include <stdio.h>
|
||||
|
||||
|
||||
int
|
||||
main(int argc, char *argv[]) {
|
||||
if ( argc == 0)
|
||||
{
|
||||
printf("Le nombre d'arguments est 1");
|
||||
}
|
||||
else
|
||||
{
|
||||
printf("Le nombre d'arguments est de : %d", argc);
|
||||
}
|
||||
|
||||
exit (EXIT_SUCCESS);
|
||||
}
|
Loading…
Reference in New Issue