Write a program to solve the area and circumference of the circle using pointers in Golang.
I am currently accepting programming work, IT projects, school and application development, programming projects, thesis and capstone projects, IT consulting work, computer tutorials, and web development work kindly contact me in the following email address for further details. If you want to advertise on my website kindly contact me also in my email address also. Thank you.
I am currently accepting programming work, IT projects, school and application development, programming projects, thesis and capstone projects, IT consulting work, computer tutorials, and web development work kindly contact me in the following email address for further details. If you want to advertise on my website kindly contact me also in my email address also. Thank you.
My email address is the following jakerpomperada@gmail.com, jakerpomperada@aol.com, and jakerpomperada@yahoo.com.
My mobile number here in the Philippines is 09173084360.
My telephone number at home here in Bacolod City, Negros Occidental Philippines is +63 (034) 4335675.
Here in Bacolod I also accepting computer repair, networking and Arduino Project development at a very affordable price.
My personal website is http://www.jakerpomperada.com
Sample Program Output
Program Listing
/* circle_pointers.go
Author : Mr. Jake Rodriguez Pomperada, MAED-IT
Date : August 8, 2019 Thursday 5:39 AM
Location : Bacolod City, Negros Occidental
Website : http://www.jakerpomperada.com
Emails : jakerpomperada@gmail.com and jakerpomperada@yahoo.com
*/
package main
import "fmt"
const PI float64 = 3.14
func main(){
var rad float64
var ci float64
var area float64
fmt.Print("\n")
fmt.Print("\tArea and Circumference of Circle Using Pointers")
fmt.Print("\n\n")
fmt.Print("\tEnter radius of Circle : ")
fmt.Scanln(&rad)
radius := &rad
area = PI * *radius * *radius
fmt.Print("\n")
fmt.Print("\tArea of Circle is : ")
fmt.Printf("%0.2f ",area)
ci = 2 * PI * rad
fmt.Print("\n\n")
fmt.Print("\tCircumference of Circle is : ")
fmt.Printf("%0.2f ",ci)
fmt.Print("\n\n")
fmt.Print("\tEnd of Program")
fmt.Print("\n")
}