#include #include int main() { // we can initialize the array when it is declared int a[5] = {1, 2, 3, 4, 5}; // print the array int i; for(i=0; i< 5; i++) printf("a[%d]=%d\n", i, a[i]); system("pause"); }