what value is a pointer in c code example
Example: how to make pointers in c
datatype *var;
variable var actually holds the address of the data(memory where it is stored)
*var lets you access the data stored at that address
datatype *var;
variable var actually holds the address of the data(memory where it is stored)
*var lets you access the data stored at that address