| #include <stdio.h> | |
| #define N 10 ; | |
| void main() | point d'entrée du programme |
| { | |
| int t[N] , i ; | déclaration de tableau |
| for (i = 0 ; i < N ; i++) | boucle for |
{ | début instructions composées |
printf("entrer t[%d] \n",i); | |
scanf("%d", &t[i]); | |
} | fin instructions composées |
| } |