Posts

Showing posts from February, 2020

Delving into C++

Commenced as a part of our curriculum, we, TY E&TC students of VIT, Pune have started this activity. Till now, we have seen the most basic concepts encompassing the Object-Oriented nature of C++. In this continuation to series of our blogs, we’ll take a deep dive into more of the different types of techniques allowed to us by this promising programming language. To start with, we have an amazing concept of Data Binding in C++. It’s of two types: ·        Static Data Binding                             ·        Dynamic Data Binding ‘Binding’ refers to the concept of assigning one thing to another. When a function is called by a program in C++, the execution handler, during the compile time, binds the program control to the memory address where the function is defined. Let’...