以系统时间命名文件

#include   <stdio.h> 
#include   <time.h> 
#include   <string.h> 

void   main() 

time_t   tt; 
char   *   p; 
time(&tt); 
p=ctime(&tt); 
printf( "%s ",p); 
printf( "length(p)   =   %d\n ",strlen(p)); 
p[strlen(p)-1]= '\0 '; 
printf( "%s\n ",p); 
printf( "length(p)   =   %d\n ",strlen(p)); 

你可能感兴趣的:(系统时间,命名文件)