Answers for "** pointer in c"

C
2

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
Posted by: Guest on May-02-2021

Code answers related to "C"

Browse Popular Code Answers by Language