Program :
package main
import (
"fmt"
)
func main() {
ch := make(chan int)
fmt.Println(ch)
fmt.Println(0xc000062060)
}
Output :
0xc00009e000
824634122336
What does that output (824634122336) mean? I think (0xc00009e000) is a starting address of an channel.
If (0xc00009e000 is address of channel)
- Then please tell me what is this (824634122336)
else
- Then please tell what are those outputs.