Q:

Go program to demonstrate the multiple Goroutines

belongs to collection: Golang Goroutines Programs

0

In this program, we will create two user-defined functions and call both functions as a goroutine concurrently to print messages 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 demonstrate multiple Goroutines is given below. The given program is compiled and executed successfully.

// Go program to demonstrate multiple Goroutines

package main

import "fmt"
import "time"

func PrintNum() {
	for i := 0; i < 3; i++ {
		time.Sleep(500 * time.Millisecond)
		fmt.Printf("%d\n", i)
	}
}

func ShowMsg(msg string) {
	for i := 0; i < 3; i++ {
		time.Sleep(500 * time.Millisecond)
		fmt.Printf("%s\n", msg)
	}
}

func main() {
	fmt.Println("Start: Main function")
	//Goroutine call
	go ShowMsg("Hello World")

	//Goroutine call
	go PrintNum()

	time.Sleep(3500 * time.Millisecond)
	fmt.Println("End: Main function")
}

Output:

Start: Main function
0
Hello World
1
Hello World
2
Hello World
End: Main function

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 created two user-defined functions PrintNum()ShowMsg(). Then we called both functions as a goroutine concurrently to print messages on the console screen.

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

total answers (1)

<< Go program to create an anonymous Goroutine...