Write a program in C to add two numbers using pointers
WAP to find the permutation and combination for a given value of n and r with the help of pointers.
$$ C(n,r) = \frac{n!}{r! \ * \ (n-r)!} $$
$$ P(n,r) = \frac{n!}{(n-r)!} $$
Write a program in C to print the elements of an array in reverse order using pointers.
Using pointers, write a function that recieves a charachter string and a charachter as argument and deletes all occurences of this charachter in the string and prints the corrected string without any holes.