Need of defining datatype of a pointer in C

Data types in c refer to an extensive system used for declaring variables or functions of different types. The type of a variable determines how much space it occupies in storage. Example: int 2/4 bytes, char 1 bytes, short 2 bytes The Data type is needed when dereferencing the pointer, so it knows how much […]

Need of defining datatype of a pointer in C Read More »