time.Time.Clock() Function in Golang With Examples Last Updated : 19 Apr, 2020 Summarize Comments Improve Suggest changes Share Like Article Like Report In Go language, time packages supplies functionality for determining as well as viewing time. The Time.Clock() function in Go language is used to check the hour, minute, and second within the day in which the stated "t" presents itself. Moreover, this function is defined under the time package. Here, you need to import the "time" package in order to use these functions. Syntax: func (t Time) Clock() (hour, min, sec int) Here, "t" is the stated time. Return Value: It returns hour, minute and second of the stated "t". Example 1: C // Golang program to illustrate the usage of // Time.Clock() function // Including main package package main // Importing fmt and time import "fmt" import "time" // Calling main func main() { // Declaring t in UTC t := time.Date(2020, 13, 34, 12, 45, 55, 0, time.UTC) // Calling Clock method hour, minute, second := t.Clock() // Prints hours fmt.Printf("The stated hour is: %v hours\n", hour) // Prints minutes fmt.Printf("The stated minute is: %v minutes\n", minute) // Prints seconds fmt.Printf("The stated second is: %v seconds\n", second) } Output: The stated hour is: 12 hours The stated minute is: 45 minutes The stated second is: 55 seconds Example 2: C // Golang program to illustrate the usage of // Time.Clock() function // Including main package package main // Importing fmt and time import "fmt" import "time" // Calling main func main() { // Declaring t in UTC t := time.Date(2020, 13, 34, 25, 66, 100, 0, time.UTC) // Calling Clock method hour, minute, second := t.Clock() // Prints hours fmt.Printf("The stated hour is: %v hours\n", hour) // Prints minutes fmt.Printf("The stated minute is: %v minutes\n", minute) // Prints seconds fmt.Printf("The stated second is: %v seconds\n", second) } Output: The stated hour is: 2 hours The stated minute is: 7 minutes The stated second is: 40 seconds Here, the stated hour, minute, and day are out of usual range but they are normalized while conversion. Comment More infoAdvertise with us Next Article time.Time.Day() Function in Golang With Examples N nidhi1352singh Follow Improve Article Tags : Go Language GoLang-time Similar Reads time.Time.Equal() Function in Golang With Examples In Go language, time packages supplies functionality for determining as well as viewing time. The Time.Equal() function in Go language is used to check if the stated times "t" and "u" represents identical time instant or not. And two times located in different locations can even be equal. Moreover, 2 min read time.Time.Add() Function in Golang with Examples In Go language, time packages supplies functionality for determining as well as viewing time. The Time.Add() function in Go language is used to add the stated time and duration. Moreover, this function is defined under the time package. Here, you need to import the "time" package in order to use the 2 min read time.Time.Date() Function in Golang with Examples In Go language, time packages supplies functionality for determining as well as viewing time. The Time.Date() function in Go language is used to check the year, month, and day in which the stated "t" presents itself. Moreover, this function is defined under the time package. Here, you need to import 2 min read time.Time.Before() Function in Golang With Examples In Go language, time packages supplies functionality for determining as well as viewing time. The Time.Before() function in Go language is used to check if the stated time instant t is before the stated u or not. Moreover, this function is defined under the time package. Here, you need to import the 2 min read time.Time.Day() Function in Golang With Examples In Go language, time packages supplies functionality for determining as well as viewing time. The Time.Day() function in Go language is used to check the day of the month in which the stated "t" presents itself. Moreover, this function is defined under the time package. Here, you need to import the 2 min read time.Time.In() Function in Golang with Examples In Go language, time packages supplies functionality for determining as well as viewing time. The In() function in Go language is used to find a copy of the stated "t" that represents the identical time instant, but along with the copy's location data that is set to "loc" for display uses. And if "l 2 min read Like