My issue
My code
#include <stdio.h>
int main() {
char *week[_] = {"Monday", "Tuesday", "Wednesday", "Thursday"};
printf("%s \n", week[ 2,3 ]);
printf("%s", week[ 2,3]);
return 0;
}
Learning course: Learn C
Problem Link: CodeChef: Practical coding for everyone