Advertisement
Lauda

Untitled

Jun 6th, 2012
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.15 KB | None | 0 0
  1. // Generisanje slucajnog slova (CPU mode)
  2. int randomSlovo()
  3. {
  4.     srand(time(NULL));
  5.     int g = (rand() % (25 +1)) + 97;
  6.  
  7.         return g;
  8. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement