What is the output of the following Go code block, assuming…
What is the output of the following Go code block, assuming it is in the program that imports the fmt package: var x int = 20if x := 10; x < 11 { fmt.Println("Value of x inside the if statement:", x)}fmt.Println("Value of x outside the if statement:", x)
Read Details