#include <stdio.h> int main (void) { char a[][5] = { "Dies", "ist", "ein", "Test" }; for (int i = 0; i < 4; i++) printf ("%s\n", a[i]); return 0; }