Advertisement
yuawn

time.c

Oct 12th, 2017
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.23 KB | None | 0 0
  1. #include<stdio.h>
  2. #include<stdlib.h>
  3.  
  4. int main(){
  5.     int t = time(0);
  6.     for( int i = 0 ; i < 7 ; i++ ){
  7.         srand( t + i );
  8.         int a = 0;
  9.         while( a < 0x10000 ) a = rand() & 0xfffff000;
  10.         printf( "%p\n" , a );
  11.     }
  12.     return 0;
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement