I wrote a code to generate the current date and time.. and I got the following result
Wed May 27 21:02:48 2020
I want to create an array of months and compare the months
string months[12] ={ "January", "February", "March", etc"};
string months[12] ={ "Jan","Feb","Mar",etc};
which one can I use so that it match with the c++ month format?