Skip to content
Snippets Groups Projects
Commit 4a7533fe authored by william.ho's avatar william.ho
Browse files

init fichier

parents
No related branches found
No related tags found
No related merge requests found
# Exam1_prog_C
## Comment lancer les programmes ?
Enchainer les deux conmmandes suivante dans le terminal pour lance le code :
```shell
make
,/main
```
## Comment netoyer les fichiers ?
```shell
make clean
```
\ No newline at end of file
main: main.o
gcc main.c -lm -o main -Wall -Wextra -g -fsanitize=address -fsanitize=leak
clean:
rm -f *.o main
#include <stdio.h>
#include <stdlib.h>
int main(){
printf("Hello word\n");
return(0);
}
main: main.o
gcc main.c -lm -o main -Wall -Wextra -g -fsanitize=address -fsanitize=leak
clean:
rm -f *.o main
#include <stdio.h>
#include <stdlib.h>
int main(){
return(0);
}
main: main.o
gcc main.c -lm -o main -Wall -Wextra -g -fsanitize=address -fsanitize=leak
clean:
rm -f *.o main
#include <stdio.h>
#include <stdlib.h>
int main(){
return(0);
}
main: main.o
gcc main.c -lm -o main -Wall -Wextra -g -fsanitize=address -fsanitize=leak
clean:
rm -f *.o main
#include <stdio.h>
#include <stdlib.h>
int main(){
return(0);
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment