Pass by value vs pass by reference
When calling a function you can pass data to in 2 ways: pass it by value or pass it by reference. Have a look at this piece of code: our […]
When calling a function you can pass data to in 2 ways: pass it by value or pass it by reference. Have a look at this piece of code: our […]
Linked Lists, every Data Structures student nightmare. But it shouldnt be because the concept is easy to grasp. The main idea is that a linked list is a list of […]