Page 1 of 1

What will be the output of the following C code, if the system date is 6/23/2017?

Posted: Wed Jul 13, 2022 7:56 pm
by answerhappygod
#include<stdio.h>
#include<time.h>
int main()
{
struct tm *local;
time_t t;
t=time(NULL);
local=localtime(&t);
printf("%d",local->tm_mday);
return 0;
}
a) 6
b) 22
c) 23
d) error