0
what is the use of null in rand ? how it is work
srand (time(null))
3 Answers
0
Walang sagot sa tanong kung bakit null ay mahalaga đ
0
The call to time(NULL) returns the current calendar time (seconds since Jan 1, 1970). See this reference for details. Ordinarily, if you pass in a pointer to atime_t variable, that value will point to the current time.
ctto
0
iloveyou