Go Program to Concat Two Strings

Write a Go program to perform string concatenation. In this example program, we declared two strings and used an arithmetic operator to concat them. package main import ( “fmt” ) func main() { str1 := “Hello ” str2 := “World” str3 := str1 + str2 fmt.Println(str3) } Go Program to Concat Two Strings This program … Read more