Q:

Golang program to add given number of days to the specified date

belongs to collection: Golang Date & Time Programs

0

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.

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

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.

// 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.

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

Golang Date & Time Programs

This question belongs to these collections

Similar questions


need a help?


find thousands of online teachers now
Golang program to add given number of hours to the... >>
<< Golang program to demonstrate the ParseDuration() ...