Array vs Pointer String
In programming languages such as C, C++ and Java we use pointer variable to point a value which address is stored in that pointer variable. The pointer variable we often create is of same data type, as the pointer variable is supposed to point. In C and C++ there is no built-in data type called string, so we… Read More »