Some examples to understand the workflow of using Go C Bindings
What
In Go you can call C programs and functions using cgo. This way you can easily create C bindings to other applications or libraries that provides C API.
How
All you need to do is to add a import "C" at the beginning o...