by Shahinur | May 14, 2019 | Algorithm, Data Structure, Miscellaneous
Suppose we want to add a large number of integers, how long will this operation take? The first question that comes to mind is the number of integers, let’s assume this number is n. Can we specify exactly how long this will take? Yes, we can for a specific...
by Shahinur | May 13, 2019 | C, C++, Data Structure
Structure and union are both user defined data types of C programming language. User defined data type is a data type that the user i.e. the programmer will decide what type it will be. Sometimes we need to do some complex programs when using basic data types is...
by Shahinur | May 3, 2019 | Python
Python has two major versions, which are updated separately. These versions are Python 2 and Python 3. Common Python users often find themselves in doubt about these versions. In continuation and considering new users, a brief discussion is presented here. Both...
by Shahinur | Apr 25, 2019 | Python
In previous posts, we have seen some general discussion of Python. But a beginner, programmer or developer can naturally ask the question that is Python technically sound? In this blog post, we will discuss about this – Object Oriented Python supports three...
by Shahinur | Apr 17, 2019 | C, C++, Data Structure
Arrays and pointers are common in most programming languages. Most importantly, these two data structures are needed everywhere from any moderate to complex program. Here we will try to know details about these two data structures. Arrays and pointers are almost the...
Recent Comments