Help me in solving ARYY4 problem

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

@moturusunil984
Put the size of the array
and print separately 2 and 3
like this
include <stdio.h>

int main() {
char *week[4] = {“Monday”, “Tuesday”, “Wednesday”, “Thursday”};
printf(“%s \n”, week[ 2 ]);
printf(“%s”, week[ 3 ]);

return 0;
}