In this program, we will get today's date using time.Now() function and subtract 1 day from today's date and print yesterday's date on the console screen.
The source code to print yesterday's date is given below. The given program is compiled and executed successfully.
// Golang program to print yesterday's date
package main
import "fmt"
import "time"
func main() {
today := time.Now()
yesterday := today.AddDate(0, 0, -1)
fmt.Printf("Today : %02d-%02d-%04d\n", today.Day(), today.Month(), today.Year())
fmt.Printf("Yesterday : %02d-%02d-%04d", yesterday.Day(), yesterday.Month(), yesterday.Year())
}
Output:
Today : 22-03-2021
Yesterday : 21-03-2021
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 fmt and time packages to use time and fmt related functions.
In the main() function, we got today's date using the Now() function and subtract 1 day from today's date using the AddDate() function by specifying -1 as a day value and print yesterday's date on the console screen.
Program/Source Code:
The source code to print yesterday's date is given below. The given program is compiled and executed 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 fmt and time packages to use time and fmt related functions.
In the main() function, we got today's date using the Now() function and subtract 1 day from today's date using the AddDate() function by specifying -1 as a day value and print yesterday's date on the console screen.
need an explanation for this answer? contact us directly to get an explanation for this answer