• C

C Programming: Arrays, Pointers and Functions

In today's video tutorial lets learn more about arrays and pointers, and how we can use them with functions. Note:…

  • C

C Program To Display Elements of Array In Reverse Order using Pointers

Write a c program to display/print elements of an array in reverse order, using pointers. Pointer Variable: Pointer variable is…

  • C

C Program To Find Largest Difference Between Two Elements of Array

Write a C program to find largest / maximum difference between two elements of an array, such that larger element…

  • C

C Program To Search A Number And Count Its Occurrence In An Array

Twenty-five numbers are entered from the keyboard into an array. The number to be searched is entered through the keyboard…

  • C

C Program To Segregate 0s and 1s In An Array using Swapping Method

Write a C program to segregate 0's to the left and 1's to the right of an array using Swapping…