Q:

Golang program to demonstrate the command line arguments

0

In this program, we will pass arguments at the command line during the execution of the program. Here we will print program-name and arguments 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 the command-line arguments is given below. The given program is compiled and executed on the ubuntu 18.04 operating system successfully.

// Golang program to demonstrate
// the command-line argument

package main

import "fmt"
import "os"

func main() {
	programName := os.Args[0]
	arg1 := os.Args[1]
	arg2 := os.Args[2]

	fmt.Println("Program Name: ", programName)
	fmt.Println("Argument1:    ", arg1)
	fmt.Println("Argument2:    ", arg2)
}

Output:

$ go run sample.go "Hello World" 108

Program Name:  /tmp/go-build3253235759/b001/exe/sample
Argument1:     Hello World
Argument2:     108

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 fmtos packages then we can use a function related to the fmt and os package.

In the main() function, we passed arguments at the command line and we printed the program name and other arguments on the console screen.

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

total answers (1)

Golang program to find the count of command-line a... >>