which method returns the time at the users location?\ntime()\ngmtime()\nlocaltime()\nservertime(0

which method returns the time at the users location?\ntime()\ngmtime()\nlocaltime()\nservertime(0
Answer
Brief Explanations:
The localtime() function in many programming languages returns the current time as a struct tm broken down into its components, adjusted to the local time zone of the user's location. The time() function typically returns the number of seconds since the Epoch. The gmtime() function returns the time in Coordinated Universal Time (UTC). There is no standard usertime(0) function in common programming - time - related libraries.
Answer:
C. localtime()