http://golang.org/pkg/fmt/
fmt.Printf("address of slice %p add of Arr %p \n", &slice, &intarr)
%p
will print the address.
http://golang.org/pkg/fmt/
fmt.Printf("address of slice %p add of Arr %p \n", &slice, &intarr)
%p
will print the address.