Simple test program on pointers in C
This post only documents a simple program to show the effects of * and & in C and does not attempt to explain what pointers are. For a quick read, check out The 5-Minute Guide to C Pointers. Program: #include <stdio.h> int main() { // lval (left-hand side value – write) = rval (right-hand side …