Math C

#include 
#include 
#include 
int main(void)
{
  int i, stime;
  long ltime;
  /* get the current calendar time */
  ltime = time(NULL);
  stime = (unsigned) ltime/2;
  srand(stime);
  for(i=0; i<10; i++) printf("%d ", rand());
  return 0;
}