Cgo: call go function from c executable, who start go runtime?
Cgo. When i call to go functions from c process . When and how the go runtime started. What if i have 2 go project compiled into shared object and wrapped by cgo , is go runtime will run twice?
Why is the answer of “2 + 8 >> 1″ in golang different from that in c++?
i think the “+” should do first than “>>”, and the answer should be “5”, but it got “6” in golang.
Generate dynamic data structure at runtime
I am creating a web app, where user will have posibility of defining their data structure/ schema. for example Name, Address [Array], Age, Gender (*optional field).