This website is for c programming tutorials online.By this website you can learn c programming online.There are many c programming topics and Other programs for practice.There are also some projects created in c programming.
Pointer in C is a variable that stores the address of another variable.Pointer variables can be of any Datatype like int,char,float,double,short,etc. Syntax:datatype *variable_name; Some examples:int *ptr,long *ptr; Example Program for Pointer: