C program to convert given number of any base to any base.
Any base to any base conversion in c. #include<stdio.h> void convert(int d, i…
Merge Sort Merge Sort In C. 1)Merge sort is a sorting algorithm that uses the divide and conquer and combine algori…
Read moreSelection Sort Concept : - Selection Sort is a In-place sorting algorithm. In Selection Sort program the…
Read more#include<stdio.h> void quicksort(int b[25],int f,int l) { int i, j, pivot,temp; if(f<l) { pivot=f; i=f; …
Read more#include<stdio.h> int main() { int a[50],i,j,n,temp; printf("Enter Array size: "); scanf("%d",&n); …
Read moreMy humble request to user please try this program on your PC/ Mobile/Laptop and See amazing Output we get. $$Digital Clock Program $$ #include<std…
Read more#include<stdio.h> int main() { int a[100],n,i,x,flag=0; printf("Enter size of Array:"); scanf("%d",&n)…
Read more#include<stdio.h> #include<conio.h> int main(int argc,char *argv[]) { int n; clrscr(); printf("\n Enter elements:"); fo…
Read more#include <stdio.h> #include <time.h> int isLeapYear(int year, int mon) { int flag = 0; if (year % 4 == 0) { …
Read moreAny base to any base conversion in c. #include<stdio.h> void convert(int d, i…
Social Plugin