Am I forced to use loops and realy long lines or is something like this possible in c?
int a[5] = {1, 2, 3, 5, 8};
printf("%d %d %d %d %d\n", a[0], a[1], a[2], a[3], a[4]); // this is ok but
printf("%d %d %d %d %d\n", a); // is this somehow possible??
I am asking if there is a way.