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