#include int main(){ int a[] = {1, 2, 3, 4, 5}; int b[5], i; b = a; for(i=0 ; i<5; i++) printf("%d", b[i]); }