Switch to full style
C++ code examples
Post a reply

srand function example

Fri Apr 29, 2011 10:47 pm

Code:
/* srand example */
#include <stdio.h>
#include <stdlib.h>
#include <time.h>
#include<windows.h>
int main ()
{
  
printf ("Random value is : %d\n"rand() % 100);
  
// setting the random generator seed.
  
srand time(NULL) );
  
printf ("Random value is: %d\n"rand() % 100);
  
// setting the random generator seed.
  
srand );
  
printf ("Random value is: %d\n"rand() %100);

   
// sleep to watch the time .
   
Sleep(9000);
}
 




Post a reply
  Related Posts  to : srand function example
 php function     -  
 Using the array_slice () Function     -  
 Function return more than one value     -  
 Nested function     -  
 function key recognition     -  
 array_key_exists function use     -  
 Using include function     -  
 Function Overloading     -  
 The isset() Function     -  
 finalize() function     -  

Topic Tags

C++ Basics