This repository has been archived on 2019-08-08. You can view files and clone it, but cannot push or open issues or pull requests.
s4-c/P67-2.c

17 lines
214 B
C

/* Tableau avec initialisation */
#include <stdio.h>
#define N 5
double T[N] = {-2, -1, 0, 1, 3};
int main() {
int i;
for (i = 0; i < N; i++)
printf("T[%d] = %lf\n", i, T[i]);
return 0;
}