My issue
although my code is correct, its saying wrong answer: failed on a hidden test case
My code
#include <stdio.h>
#include <string.h>
int main() {
// declare the array and print 3rd month
char months[4][20] = {"January", "February", "March", "April"};
// Print the 3rd month (March) using array indexing
printf("The 3rd month of the year is: %s\n", months[2]);
return 0;
}
Learning course: Data structures & Algorithms lab
Problem Link: https://www.codechef.com/learn/course/muj-aiml-dsa-c/MUJADSAC05/problems/CLB086A