Here, we will demonstrate the use of the rand.Seed() function. The rand.Seed() function is used to set a seed value to generate random numbers. If the Seed value is the same then rand.Intn() function will generate the same series of random numbers. If we change the seed value then it will generate different series of random numbers.
Program/Source Code:
The source code to demonstrate the rand.Seed() function is given below. The given program is compiled and executed on the ubuntu 18.04 operating system successfully.
Output:
Explanation:
In the above program, we declare the package main. The main package is used to tell the Go language compiler that the package must be compiled and produced the executable file. Here, we imported the required packages to predefined functions.
In the main() function, we used rand.Seed() function to set seed value. Here, we set a seed value 100 two times then it is generating the same series of random numbers. After that, we used time as a seed value then the different series of random numbers are generating.
need an explanation for this answer? contact us directly to get an explanation for this answer