Exercise 3
Write a program, containing a function "unif" (our standard uniform random number generator defined here) and a main program to generate 10 random numbers (by calling unif), which are printed to standard output (the screen). So execution of the program should provide a list of 10 random numbers on the screen.
Use the "for" statement to realize the loop to generate the 10 random numbers.
In case of problems in understanding basic notions of the programming langage C: see
C tutorial
The solution of this exercise can be found here