What will be the output of this code if the system date is 3/28/2002?
#includestdio.h
#includetime.h
int main()
{
struct tm *ptr;
time_t t;
char str[100];
t = time(NULL);
ptr = localtime(&t);
strftime(str,100,"%B",ptr);
puts(str);
return 0;
}

Posted on by