What will be the output of the following C code, if the system date is 6/24/2017?
#include<stdio.h>
#include<stdlib.h>
#include<time.h>
int main()
{
time_t ct;
time(&ct);
printf("%s\n",(&ct));
}
#include<stdio.h>
#include<stdlib.h>
#include<time.h>
int main()
{
time_t ct;
time(&ct);
printf("%s\n",(&ct));
}A. Error
B. Junk value
C. 6
D. June
Answer: Option B

Join The Discussion