string array sorting using bubble sort algorithm
Bubble sort in string array #include <stdio.h> #include <conio.h> #include &…
Bubble sort in string array #include <stdio.h> #include <conio.h> #include &…
bubble sort #include <stdio.h> void bubble_sort(int a[], int size); int main(voi…
Bubble sort - linked list #define MAX 10 struct lnode { int data; struct lnode *next; …
Binary search #define TRUE 0 #define FALSE 1 int main(void) { int array[10] = {1, 2, 3…
Count no. of students above,below and average students #include<stdio.h> #inclu…
Basic example showing constants usage in C #include /*constants for bonus rates and sales*…
ATM programing ATM C programing language Program code /*Note Pin code is 1234*/ #includ…
ARRANGE THE ELEMENTS IN ARRAY IN DESCENDING ORDER main() { int a[100],i,n,j,search,temp; …
Add Two numbers without using operator #include<stdio.h> int main (){ …
Add two matrices and store the result #include<stdio.h> #include<conio.h> …
Add Pointers #include<stdio.h> #include<conio.h> void main() { int a[…
Add numbers using command line arguments (CLA) #include<stdio.h> #include<conio.h…
A bubble sort routine # include # include void bubblesort(int array[],int size); void ma…
2d example insertion sort #include <stdio.h> #include <conio.h> struct node…
Find address of char, string, integer #include<stdio.h> #include<conio.…
Subtraction of Two Matrices C Program for subtraction of two matrices #include<std…
c program to Swapping of two Values using Functions #include<stdio.h> #include…
To delete n Characters from a given position in a given string /* Write a C program that …
Total Number of Consonants in a String #include<stdio.h> #include<conio.h> …
Tree sort- string array #include "stdio.h" #include "string.h" #includ…