Skip to content

Instantly share code, notes, and snippets.

View juanarbol's full-sized avatar
🐢
🐢🐇

Juan José juanarbol

🐢
🐢🐇
View GitHub Profile
@juanarbol
juanarbol / index.md
Created May 17, 2019 23:40 — forked from ericandrewlewis/index.md
C++ Pointer Tutorial

C++ Pointer Tutorial

Because pointers can be ugh

"Regular" variables (not pointers)

To understand a pointer, let's review "regular" variables first. If you're familiar with a programming language without pointers like JavaScript, this is what you think when you hear "variable".

When declaring a variable by identifier (or name), the variable is synonymous with its value.

@juanarbol
juanarbol / introrx.md
Created July 4, 2018 23:39 — forked from staltz/introrx.md
The introduction to Reactive Programming you've been missing