File: printdate.c

package info (click to toggle)
newsflash 0.99-3
  • links: PTS
  • area: main
  • in suites: potato
  • size: 272 kB
  • ctags: 114
  • sloc: ansic: 768; sh: 186; makefile: 66
file content (6 lines) | stat: -rw-r--r-- 77 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
#include <time.h>
#include <stdio.h>
main()
{
  printf("%d\n",time(NULL));
}