#include main() { int i, ary[5] = {12, 34, 56, 78, 90}; for(i=0; i<=4; i++) printf("%3d\n", ary[i]); return(0); }