- Modify the following program to ask for a name and an age
- Modify the print statement accordingly
package main
import "fmt"
func main() {
fmt.Printf("Your name is ___ and your age is ___")
}
Click here to view the solution
package main
import "fmt"
func main() {
fmt.Printf("Your name is ___ and your age is ___")
}
Click here to view the solution