Pages

Thursday

Finding Reverse of String using Pointers in C

Here's a C program to find reverse of a string using pointers with output and explanation. This program uses C concepts like Pointers in C, Malloc function in C, Sizeof function in C and For Loop in C.

Tuesday

C Program to Find Maximum and Minimum of Array Elements using Pointers

Here's a C program to find maximum and minimum value stored in an integer array using a function that takes pointer as arguments. This program uses C concepts like Array in C, Call by Reference and Pointer in C.