?
What will be the output of the following C code, if the system date is 6/24/2017?
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));
}
Join the Discussion
Login to post a comment or share your explanation.
Login