diff --git a/DEV1.1 b/DEV1.1 new file mode 160000 index 0000000..07a9e6c --- /dev/null +++ b/DEV1.1 @@ -0,0 +1 @@ +Subproject commit 07a9e6c81e6c9cfaff262d94d2a584b95c4f8872 diff --git a/coursDEV.1.1/1 La compilation.docx b/coursDEV.1.1/1 La compilation.docx new file mode 100644 index 0000000..e60717c Binary files /dev/null and b/coursDEV.1.1/1 La compilation.docx differ diff --git a/coursDEV.1.1/10 Chaînes de caractères.docx b/coursDEV.1.1/10 Chaînes de caractères.docx new file mode 100644 index 0000000..9679e77 Binary files /dev/null and b/coursDEV.1.1/10 Chaînes de caractères.docx differ diff --git a/coursDEV.1.1/11 Fonctions.docx b/coursDEV.1.1/11 Fonctions.docx new file mode 100644 index 0000000..dad9cba Binary files /dev/null and b/coursDEV.1.1/11 Fonctions.docx differ diff --git a/coursDEV.1.1/12 Organisation du code.docx b/coursDEV.1.1/12 Organisation du code.docx new file mode 100644 index 0000000..e69de29 diff --git a/coursDEV.1.1/2 Les caractères.docx b/coursDEV.1.1/2 Les caractères.docx new file mode 100644 index 0000000..82ecdb0 Binary files /dev/null and b/coursDEV.1.1/2 Les caractères.docx differ diff --git a/coursDEV.1.1/3 Conditions et structure conditionelle.odt b/coursDEV.1.1/3 Conditions et structure conditionelle.odt new file mode 100644 index 0000000..6c84e3f Binary files /dev/null and b/coursDEV.1.1/3 Conditions et structure conditionelle.odt differ diff --git a/coursDEV.1.1/4 Boucles.docx b/coursDEV.1.1/4 Boucles.docx new file mode 100644 index 0000000..e8a5671 Binary files /dev/null and b/coursDEV.1.1/4 Boucles.docx differ diff --git a/coursDEV.1.1/5 Types.docx b/coursDEV.1.1/5 Types.docx new file mode 100644 index 0000000..06b7925 Binary files /dev/null and b/coursDEV.1.1/5 Types.docx differ diff --git a/coursDEV.1.1/6 Les constantes nommés et la Bibliothèque math.docx b/coursDEV.1.1/6 Les constantes nommés et la Bibliothèque math.docx new file mode 100644 index 0000000..e69de29 diff --git a/coursDEV.1.1/7 Les Tableaux.docx b/coursDEV.1.1/7 Les Tableaux.docx new file mode 100644 index 0000000..e307291 Binary files /dev/null and b/coursDEV.1.1/7 Les Tableaux.docx differ diff --git a/coursDEV.1.1/8 Les Tableaux multidimensionnels.docx b/coursDEV.1.1/8 Les Tableaux multidimensionnels.docx new file mode 100644 index 0000000..9eefc49 Binary files /dev/null and b/coursDEV.1.1/8 Les Tableaux multidimensionnels.docx differ diff --git a/coursDEV.1.1/9 Les adresses et les pointeurs.docx b/coursDEV.1.1/9 Les adresses et les pointeurs.docx new file mode 100644 index 0000000..e69de29 diff --git a/coursDEV.1.1/note TP DEV.docx b/coursDEV.1.1/note TP DEV.docx new file mode 100644 index 0000000..38e1000 Binary files /dev/null and b/coursDEV.1.1/note TP DEV.docx differ diff --git a/coursDEV.1.1/salut.c b/coursDEV.1.1/salut.c new file mode 100644 index 0000000..e69de29 diff --git a/debogueur/doubleur.c b/debogueur/doubleur.c new file mode 100644 index 0000000..d3e91cc --- /dev/null +++ b/debogueur/doubleur.c @@ -0,0 +1,16 @@ +#include +#include + +int somme(int n, int m) { + return n+m; +} + +int main(void) { + int valeur; + int* p = NULL; + printf("Entrez un entier : "); + scanf("%d", p); + + printf("Le double vaut %d\n", somme(*p, *p)); + return EXIT_SUCCESS; +} \ No newline at end of file