Q:

Golang program to terminate the program with a specified exit code

0

In this program, we will use the Exit() function of the "os" package to terminate the program with a specified exit code.

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 terminate the program with a specified exit code is given below. The given program is compiled and executed successfully.

// Golang program to terminate the program
// with a specified exit code

package main

import (
	"fmt"
	"os"
)

func main() {
	fmt.Println("Hello World")
	os.Exit(5)
}

Output:

Hello World

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 to formatting related functions. Here, we also imported the "os" package to use the Exit() function.

In the main() function, we print the "Hello World" message and then terminate the program with a specified exit code using the Exit() function. Here we terminate the program with exit code 5.

 

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

total answers (1)

This question belongs to these collections

Similar questions


need a help?


find thousands of online teachers now