Pointer
This wiki is incomplete.
A pointer in C language is a variable that stores/points the address of another variable. A pointer in C is used to allocate memory dynamically, i.e. at run time. The pointer variable might be belonging to any of the data types such as int, float, char, double, short, etc.
Pointer Syntax: datatype *varname;
Example: int *p; char *p, where * is used to denote that “p” is a pointer variable, not a normal variable.
A normal variable stores the value whereas a pointer variable stores the address of the variable. The content of the C pointer is always a whole number, i.e. address. Always C pointer is initialized to null, i.e. int *p = null. The value of null pointer is 0. & symbol is used to get the address of the variable. * symbol is used to get the value of the variable that the pointer is pointing to. If a pointer in C is assigned to NULL, it means it is pointing to nothing. Two pointers can be subtracted to know how many elements are available between these two pointers. But, Pointer addition, multiplication, division are not allowed. The size of any pointer is 2 byte (for a 16-bit compiler).
Example program for pointers in C:
include <stdio.h>
int main() { - int ptr, q; q = 50; / address of q is assigned to ptr / ptr = &q; / display q's value using ptr variable */ printf("%d", *ptr); return 0; }
Program output: 50