You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
254 B
C

#include <stdio.h>
#include <time.h>
#include <sys\stat.h>
int main()
{
struct stat s;
FILE *fp;
fp=fopen("exmple.txt","r");
fstat(fileno(fp),&s);
printf("Last date of modification : %s",ctime(&s.st_ctime));
return 0;
}