C Programming Tutorial 4: Pointers and Arrays

1.0 Introduction A pointer variable holds the address of another variable. It is said to be “pointing” to that variable. For example, int *ip; defines a variable ip of type integer pointer. ip points to a variable of type integer. At the implementation level, it holds the address of a variable to type integer. The …

C Programming Tutorial 4: Pointers and Arrays Read More »