web analytics

Why I would choose PhpStorm over Adobe Dreamweaver?

Okay, first of all guys, I have been using PHPStorm for the last project I am working on and its really awesome, but the following list awesomeness is obviously incomplete. Read More: 10 features your IDE (Integrated Development Environment) should haveThough Adobe Dreamweaver is also a great IDE for web based development, PHPStorm is beyond the … Read more

How to write good codes or What are the good programming practices to follow !!

The following post highlights some good programming practices what beginner programmer can follow. Applying these increases the readability of codes, will make make codes more easier to update.  Well, individual programmers should have their own programming styles to maintain, but still there are some practices that the beginners can follow. With times every programmers find … Read more

Garbage Collection

Garbage collection. What you get from the title of the topic? Well, while we are coding we use variable or memory location. We may need an array initially for storing some initial elements, then we take more arrays while we are manipulating. At some part of the manipulation, it may that we dont need the … Read more

Understanding Variable scope in C++

Understanding Variable scope is very important because it can sometime leads us to unwanted value changing or hazards while coding. Like, we have declared a variable but still its showing error while compiling or running. Look at the following code, for(int x=0;x<5;x++)    //For Loop 01    {    cout<<“Inside For Loop 01”;    } cout<<x<<” times”;   … Read more

Allocating and Deallocating memory OR use of New/Delete OR allocating memory in runtime OR declaring array in runtime | in C++

Well, first of all we should be known with Variable Scope, Garbage Collection. Ok, now. When we declare a variable like as follows, int a; it allocates a specific portion of memory for that variable and when we go beyond the scope of the variable the garbage collection system automatically deallocates or in general, deletes the … Read more