C Programs »
C Program of Multilayer Perceptron Net using Backpropagation
C Program of Multilayer Perceptron Net using Backpropagation : A multilayer perceptron (MLP) is a feedforward artificial neural network model that maps sets of input data onto a set of appropriate output. An MLP
Read More »C Program to print strings in alphabetical order
C Program to print strings in alphabetical order or Lexicographical order : As we all know there are several ways to sort strings alphabetically but using arrays is the easiest. Ordering Strings into alphabetical
Read More »C Program to Concatenate two Strings using Arrays
C Program to Concatenate two Strings using Arrays : There are lot of ways of concatenating strings in C programming, also there is standard function in C “strcat” to concatenate the strings. But how
Read More »C program of Transpose of Matrix | Matrix Programs in C
C program of Transpose of Matrix : Transpose of Matrix is one of the most important operations on Matrices and quite easy one too. Transpose of Matrix means exchanging all rows of Matrix with
Read More »C Program of Huffman coding using Greedy Algorithm Approach
C Program of Huffman coding using Greedy Algorithm Approach : This code is not written by me. I found a great article on Geeks for Geeks and thought it worth sharing. Still if you
Read More »C program to add two polynomials using Linked Lists
C program to add two polynomials using Linked Lists : Adding two polynomials is quite easy stuff when we do it manually but it requires a bit effort while programming it. I have written
Read More »C program to Find Minimum Spanning tree KRUSKAL’s Algorithm
C program to Find Minimum Spanning tree KRUSKAL’s Algorithm : Kruskal’s algorithm is a greedy algorithm in graph theory that finds a minimum spanning tree for a connected weighted graph. This means it finds
Read More »C program to find Minimum Spanning tree PRIM’s Algorithm
C program to find Minimum Spanning tree PRIM’s Algorithm : Prim’s algorithm is a greedy algorithm that finds a minimum spanning tree for a connected weighted undirected graph. This means it finds a subset
Read More »C program to implement Cyclic Redundancy Check CRC
C program to implement Cyclic Redundancy Check CRC : A cyclic redundancy check (CRC) is an error-detecting code commonly used in digital networks and storage devices to detect accidental changes to raw data. Blocks
Read More »C Program to Find shortest Path using dijkstra’s algorithm
C Program to Find shortest Path using Dijkstra’s algorithm : Dijkstra’s algorithm is a graph search algorithm that solves the single-source shortest path problem for a graph with non-negative edge path costs, producing a
Read More »