arrays

  • C

C Program To Find First and Second Biggest Element In An Array using Recursion

Lets write a C program to find first and second biggest element/number in an array, without sorting it, and by…

4 years ago
  • C

C Program To Find Smallest Element in An Array using Pointers

Write a c program using pointers to find the smallest number in an array of 25 integers. Pointers: A pointer…

4 years ago
  • 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:…

4 years ago
  • C

C program To Count and Display Even and Odd Elements of An Array

Lets write a C program to display even and odd elements of an array, along with their count. Related Read:…

4 years ago
  • C

C Program To Delete Element of An Array at Specified Position

Write a C program to delete element of an array at user specified position. Show a confirmation message before deleting…

4 years ago