C language

Pointer arithmetic

Addition of a number to pointer: Pointer+ number When we add some integer to the pointer then the address stored in the pointer is incremented by                                  number * sizeof (datatype of pointer) Assume space required for data types int & char are 2 & 1 bytesresp. And we represent a particular block of memory filled […]