RKRuhan Khandakarinblogs.ruhan.tech·Apr 23, 2024 · 4 min readGo Part 2: Basics of variables & pointersPointers A pointer is an address to data in memory & operator returns the address of a variable/function * operator returns the data at an address (dereferencing) The ampersand (&) operator, if we put that in front of a variable, the name of a v...00
RKRuhan Khandakarinblogs.ruhan.tech·Apr 15, 2024 · 4 min readGo Part 1: Why should We learn Go and some basics!Advantages of Go Code runs fast Garbage collection Simpler objects Concurrency is efficient Code runs fast Software Translation Machine Language: CPU instructions represented in binary. Lowest level language and it's directly executed in the C...00