Two type of Null , "NULL pointer","NULL character. NULL means "nothing".
NULL pointer usually assigned to pointers. This will make pointer to point nothing i.e, pointer reference to no variable.
NULL character('\0') usually added automatically at the end of each string used in c program. It defines end of string.