My issue
i cannot understand where am i going wrong?
My code
#include <stdio.h>
#include <string.h>
int main() {
// declare the array and print 3rd month
const char *months[4] = {"January", "Feburary", "March", "April"};
printf("The third 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-dsa-c/MUJDSAC05/problems/CLB086A