1 /* 2 3 在这个程序当中实现获取当前的unix时间戳 4 转化为char[] 5 */ 6 #include<stdio.h> 7 #include<stdlib.h> 8 #include<time.h> 9 void main() 10 { 11 //获取当前的时间戳 12 time_t s; 13 s=time(NULL); 14 printf("%ld ",s); 15 char a[20]; 16 //转化为char[] 17 snprintf(a,20,"%ld",s); 18 printf("%s ",a); 19 }