What will be the output of the following C code if it is executed on 2nd January, 2017 (system date)?
#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_yday);
return 0;
}
#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_yday);
return 0;
}A. 0
B. 1
C. 2
D. Error
Answer: Option B

Join The Discussion