update
This commit is contained in:
1
DEV1.1
Submodule
1
DEV1.1
Submodule
Submodule DEV1.1 added at 07a9e6c81e
BIN
coursDEV.1.1/1 La compilation.docx
Normal file
BIN
coursDEV.1.1/1 La compilation.docx
Normal file
Binary file not shown.
BIN
coursDEV.1.1/10 Chaînes de caractères.docx
Normal file
BIN
coursDEV.1.1/10 Chaînes de caractères.docx
Normal file
Binary file not shown.
BIN
coursDEV.1.1/11 Fonctions.docx
Normal file
BIN
coursDEV.1.1/11 Fonctions.docx
Normal file
Binary file not shown.
0
coursDEV.1.1/12 Organisation du code.docx
Normal file
0
coursDEV.1.1/12 Organisation du code.docx
Normal file
BIN
coursDEV.1.1/2 Les caractères.docx
Normal file
BIN
coursDEV.1.1/2 Les caractères.docx
Normal file
Binary file not shown.
BIN
coursDEV.1.1/3 Conditions et structure conditionelle.odt
Normal file
BIN
coursDEV.1.1/3 Conditions et structure conditionelle.odt
Normal file
Binary file not shown.
BIN
coursDEV.1.1/4 Boucles.docx
Normal file
BIN
coursDEV.1.1/4 Boucles.docx
Normal file
Binary file not shown.
BIN
coursDEV.1.1/5 Types.docx
Normal file
BIN
coursDEV.1.1/5 Types.docx
Normal file
Binary file not shown.
BIN
coursDEV.1.1/7 Les Tableaux.docx
Normal file
BIN
coursDEV.1.1/7 Les Tableaux.docx
Normal file
Binary file not shown.
BIN
coursDEV.1.1/8 Les Tableaux multidimensionnels.docx
Normal file
BIN
coursDEV.1.1/8 Les Tableaux multidimensionnels.docx
Normal file
Binary file not shown.
0
coursDEV.1.1/9 Les adresses et les pointeurs.docx
Normal file
0
coursDEV.1.1/9 Les adresses et les pointeurs.docx
Normal file
BIN
coursDEV.1.1/note TP DEV.docx
Normal file
BIN
coursDEV.1.1/note TP DEV.docx
Normal file
Binary file not shown.
0
coursDEV.1.1/salut.c
Normal file
0
coursDEV.1.1/salut.c
Normal file
16
debogueur/doubleur.c
Normal file
16
debogueur/doubleur.c
Normal file
@@ -0,0 +1,16 @@
|
||||
#include <stdlib.h>
|
||||
#include <stdio.h>
|
||||
|
||||
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;
|
||||
}
|
Reference in New Issue
Block a user