[ create a new paste ] login | about

Link: http://codepad.org/gSiVgqsJ    [ raw code | output | fork ]

C, pasted on Jul 31:
1
2
3
4
5
6
7
8
9
10
int ransuu(int u)
{
 static first=1;
 if(first==1)
 {
  srand((unsigned int) time(NULL));
  first=0;
 }
 return(rand()%u+1);
}


Output:
1
2
In function `_start':
undefined reference to `main'


Create a new paste based on this one


Comments: