BUT2/DEV/DEV1.1/TP_Debogueur/q1.c

17 lines
260 B
C
Raw Normal View History

2023-10-23 13:23:36 +02:00
#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;
}