Διαφάνεια PPT
char s[2][50] = { "This is a test message",
"This is a second test message"};
printf("%s %s\n", s[0], s[1]);
printf("%c %c %c %c\n", s[0][0], s[0][1], s[1][0], s[1][1]);
This is a second test message
This is a test message This is a second test message