#include <stdio.h> main() { int i; int a[5] = {1, 4, 2, 5, 3}; for(i = 0; i < 5; i++) printf("%d:%d\n", i, a[i]); }
配列に初期値を与える例です。