C Program to Sort Array in Descending Order

In this tutorial, i am going to show you how to sort array in descending order with the help of standard method and function in c programs. All C Programs to Sort Array in Descending Order C Program to Sort Array in Descending Order using Standard Method #include <stdio.h> int main() { int a[10000],i,n,j,temp; printf(“Enter … Read more

C Program to Reverse an Array

In this tutorial, i am going to show you how to reverse an array with the help of for loop, while loop and pointer in c programs. All C Programs to Reverse an Array C Program to Reverse an Array using For Loop #include<stdio.h> int main() { int a[100], b[100], i, j, Size; printf(“\nPlease Enter … Read more

C Program To Merge Two Arrays

In this tutorial, i am going to show you how to merge two arrays with the help of standard method and function in c programs. All C Programs To Merge Two Arrays C Program To Merge Two Arrays using Standard Method #include <stdio.h> print(int *a,int n) { int i; for(i=0; i<n; i++) { printf(“%d “,a[i]); … Read more