In this program, we will create a user-defined function factorial() that accepts the pointer variable as an argument and calculate the factorial of the given argument. After that return the result to the calling function.
The source code to pass the pointer variables in a user-defined function is given below. The given program is compiled and executed successfully.
// Golang program to pass the pointer variables
// in a user-defined function
package main
import "fmt"
func factorial(num *int) int {
var fact int = 1
for i := *num; i > 0; i-- {
fact = fact * i
}
return fact
}
func main() {
var num int = 0
fmt.Printf("Enter Number: ")
fmt.Scanf("%d", &num)
fmt.Printf("Factorial: %d", factorial(&num))
}
Output:
Enter Number: 7
Factorial: 5040
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.
func factorial (num * int) int {
var fact int=1
for i:=*num;i>0;i--{
fact=fact *i
}
return fact
}
In the above code, we created a user-defined function factorial(). This function accepts the pointer variable as an argument and returns the factorial of the given number.
In the main() function, we read a number from the user and calculated the factorial using the factorial() function and print the result on the console screen.
Program/Source Code:
The source code to pass the pointer variables in a user-defined function 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 above code, we created a user-defined function factorial(). This function accepts the pointer variable as an argument and returns the factorial of the given number.
In the main() function, we read a number from the user and calculated the factorial using the factorial() function and print the result on the console screen.
need an explanation for this answer? contact us directly to get an explanation for this answer