Pointers and references in C++

Hi folks, today I’m going to explain conept of pointers and references in C++ in very simple terms. Pointers: Pointers variable are used to store address of another variable. And it needs to dereferenced with * operator in order to access the value stored at given location. We define pointers something like this: Declaration and … Read more

Wikibase SDK: Query data from Wikipedia(Wikidata)

Hello folks, I hope you all are doing good. Today we’re are going to do something cool(at least in my sense😅). Basically, we’re going to see how you can use wikidata to fetch publicily available data. It is also being used by wikipedia to fetch its structured data. Lets first talk about some of the … Read more