Selection sort in c - Learn programming in c
SELECTION SORT IN C PROGRAMMING: A Selection sort is a type of sorting algorithm which finds the smallest element in the given arra…
Lorem Ipsum has been the industry's standard dummy text.
SELECTION SORT IN C PROGRAMMING: A Selection sort is a type of sorting algorithm which finds the smallest element in the given arra…
#include <stdio.h> int main ( ) { int n , c , k , space = 1 ; printf ( "Enter number of rows \n " ) ; s…
auto double int struct break else long switch case enum register typedef char extern return union const float short unsigned continue for sig…
C Program to Find Substring Of String Without Using Library Function #include<stdio.h> #include<string.h> int search(char[], char…
C Program to Print the Double Pyramid Pattern #include<stdio.h> int main() { int i, j, k; int blank = 0; int lines = 6; c…
Program to copy the contents of one file into another using fgetc and fputc function #include<stdio.h> #include<process.h> void m…
C Program to Display same Source Code as Output #include<stdio.h> int main() { FILE *fp; char ch; fp = fopen(__FILE__, "…
C Program : Print All Arguments passed to C Program using Command Line. #include<stdio.h> int main(int args, char *argv[]) { int i = 0;…
Calender Program in C Programming Language : Display Day of the month #include<stdio.h> #include<conio.h> #include<math.h> …
C Program to Split an Array from Specified Position & Add First Part to the End #include <stdio.h> void main () { …
Bit Stuffing Program in C Programming #include<stdio.h> #include<conio.h> #include<string.h> void main() { int a[20],b…
C Program to Find Number of Characters and Words in a String #include <stdio.h> #include <string.h> main() { char str[50]; …
Program to count no of lines in a file. #include <stdio.h> int main() { FILE *fileptr; int count_lines = 0; char filechar…
C Program to delete n characters from a given postion in a string #include <stdio.h> #include <conio.h> #include <string.h> …
Program to insert element in the array. #include<stdio.h> #include<conio.h> void main() { int x[10]; int i,j,n,m,temp,key,…