In this program, we will create a date and then add the number of days to the specified date using Add() function and print the updated date on the console screen.
The source code to add given number of days to a specified date is given below. The given program is compiled and executed successfully.
// Golang program to add given number of days
// to the specified date
package main
import "fmt"
import "time"
func main() {
date := time.Date(2020, 2, 5, 10, 5, 20, 0, time.UTC)
res := date.Add(time.Hour * 24 * 15)
fmt.Println("date after 15 days is: ", res)
}
Output:
date after 15 days is: 2020-02-20 10:05:20 +0000 UTC
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 package that includes the files of package fmt then we can use a function related to the fmt package.
In the main() function, we created a date object using Date() function. Then we added 15 days to the date using Add() function. After that, we printed the updated date on the console screen.
Program/Source Code:
The source code to add given number of days to a specified 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 package that includes the files of package fmt then we can use a function related to the fmt package.
In the main() function, we created a date object using Date() function. Then we added 15 days to the date using Add() function. After that, we printed the updated date on the console screen.
need an explanation for this answer? contact us directly to get an explanation for this answer