Array Manipulation Using Pointer
#include <stdio.h>
main()
int *ptr;
ptr = arr;
*(ptr + 2) = 100;
*(ptr + 4) = 200;