Feedback for these lessons is very much welcome. If you like or hate something about a lesson let us know, either on GitHub, via Mail or just tell us in person ;)
x
Alea iacta est
To solve the following tasks, you need to use some functions that may be new to you.
No explanation is given on them, use man to find out how they work.
Write a program that simulates a dice using the rand() function.
Experts: Simulate “real” randomness that cannot be recreated.
###Hints###
have a look at srand() as well.
Experts: Choose the seed for srand() dynamically.
Experts: What value is different everytime you start the program?
##Solution##
coming soon.