Page 1 of 1

What will be the output of the following C code if the system date is 6/2/2017(Friday)?

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