efrei/programmation-c-cpp/tp4/calcul-somme-tableau.c

25 lines
414 B
C
Raw Normal View History

2021-11-15 11:19:34 +01:00
/* Calcul somme tableau */
#include <stdio.h>
#include <stdlib.h>
int main() {
int tableau[100];
int *pointeur = tableau;
int somme = 0;
for (int i = 0; i < 100; i++) {
tableau[i] = i + 1;
}
while (*pointeur != 100) {
somme += *pointeur;
pointeur++;
}
somme += *pointeur;
printf("La somme des valeurs du tableau fait %d\n", somme);
return 0;
}