Skip to content
Snippets Groups Projects
Commit 4a0a8266 authored by dario.genga's avatar dario.genga
Browse files

Update skeleton

parent 8cdf6293
No related branches found
No related tags found
No related merge requests found
......@@ -4,3 +4,4 @@ ex1/ex1
ex2/ex2
ex3/ex3
ex4/ex4
ex5/ex5
/* Author : Dario GENGA
* Date : 25.01.2022
* Description : Contrôle continue 4 - Exercice 4
* Description : Contrôle continue 3 - Exercice 4
*/
#include <stdio.h>
......
LIB=-lm
CC=gcc -Wall -Wextra -pedantic -g
ex4: ex5.o
$(CC) $^ -fsanitize=address -fsanitize=leak -o $@ $(LIB)
ex4.o: ex5.c
$(CC) -c $< $(LIB)
clean:
rm -f *.o ex5
/* Author : Dario GENGA
* Date : 25.01.2022
* Description : Contrôle continue 3 - Exercice 5
*/
#include <stdio.h>
#include <stdlib.h>
int main() {
return EXIT_SUCCESS;
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment