This commit is contained in:
Emmanuel Srivastava
2024-11-27 10:27:00 +01:00
parent a67727e6ff
commit 8271791c6d
16 changed files with 17 additions and 0 deletions

1
DEV1.1 Submodule

Submodule DEV1.1 added at 07a9e6c81e

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

BIN
coursDEV.1.1/4 Boucles.docx Normal file

Binary file not shown.

BIN
coursDEV.1.1/5 Types.docx Normal file

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

0
coursDEV.1.1/salut.c Normal file
View File

16
debogueur/doubleur.c Normal file
View 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;
}