Vidyalelo
C Programming · Q71

Standard Library Functions

Programming · C Programming · question 71

Q71

What will be the output of the following C code, if the system date is 6/24/2017? #include #include #include int main() time_t ct; time(&ct); printf("%s ",(&ct));

A.
Error
B.
Junk value
Answer
C.
6
D.
June

Answer: Option B

Solution

Answer: Option B
No explanation is given for this question Let's Discuss on Board