My issue
“failed on a hidden test case”
My code
#include <bits/stdc++.h>
using namespace std;
int main() {
char arr[4][10]= {"January", "February", "March", "April"};
cout << "3rd month of the year is:" << arr[2] << endl;
return 0;
}
Learning course: Data structures & Algorithms lab
Problem Link: https://www.codechef.com/learn/course/muj-aiml-dsa-c/MUJADSAC05/problems/CLB086A