Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
#include <stdio.h>
#include <time.h>
int main (void)
{
time_t tme;
struct tm *today;
char months[12][10] = { "January",
"February",
"March",
"April",
"May",
"June",
"July",
"August",
"September",
"November",
"December"
};
time(&tme);
today = localtime(&tme);
printf("Current Month = %s\n", months[today->tm_mon]);
return 0;
}