Array of Pointers & Pointer to an entire array

Lets take it by an example: int *p[N]; , where N is any integer number is a declaration for an array of N pointers of type int. This means that if we declare as:int *p[5]; then, p[0], p[1]. … ,p[4] will all be pointers of type int, ie,,…

Java vs JavaScript

First of all: Java is not JavaScript and JavaScript is not Java. Java is an Object oriented programming language created at Sun Microsystems, where as JavaScript is a scripting language and is a product of Netscape. Many of their programming structures are similar as they both use the…