Popular C Plus Plus Codes

Floyd Warshall Algorithm

Description This program shows the implementation of Floyd Warshall Shortest Path Algorithm. Source Code #include<iostream.h> #include<conio.h> #include<stdio.h> #include<stdlib. ...

0 Comments. 961 views since Sep 1, 2008

Determinant Calculator

Description To calculate Determinant of a Matrix Using Recursion(Max: 4*4) Source Code //TO CALCULATE THE DETERMINANT OF MATRIX OF ANY ORDER USING RECURSION #include<iostream.h> #include<coni ...

0 Comments. 744 views since Sep 1, 2008

Bytes Counter: Text File

Description Program to find the number of Bytes in a Text File. Source Code #include<fstream.h> #include<process.h> #include<stdio.h> #include<iostream.h> #include<proce ...

0 Comments. 732 views since Aug 25, 2008

Encryption and Decryption

Description This program helps to encrypt or decrypt a text in a specified file. Source Code #include<stdio.h> #include<conio.h> void main() { FILE *fp,*fp1; int choi; char name[20],t ...

2 Comments. 482 views since Aug 4, 2008

String to Binary Converter

Description This program is made to convert string to binary .It takes upto 500 characters of string . Source Code #include <iostream.h> #include <cstring.h> char *entry, letter, choice[2]; i ...

0 Comments. 466 views since Aug 3, 2008

Permutation Generator

Description This is a Program to Print all possible Permutations of first N Natural Numbers. Source Code #include<iostream.h> #include<conio.h> #include<string.h> int count=0; ...

0 Comments. 455 views since Aug 27, 2008

Library Management

Description This is a program which helps Manage all the records of Books in a Library. Source Code # include<iostream.h> # include<conio.h> // Creating a basic template for book and magaz ...

2 Comments. 445 views since Aug 25, 2008

AVL Tree

Description This program shows all possible Operations on an AVL Tree Source Code /* Adelson Velseky Landis Tree */ # include <iostream.h> # include <stdlib.h> # include <conio.h> ...

0 Comments. 431 views since Sep 1, 2008

Enqueue & Dequeue

Description this is a Code which is used to Create a Queue,Enqueue an element in a Queue,Dequeue an element from a Queue,to display the member elements of a Queue & to display the Size of the Queue. Source Code <pre name="code" class ...

0 Comments. 418 views since Aug 17, 2008

Queue ADT Using Single Linked Lists

Description C++ program to implement Queue ADT using Single linked lists. Source Code //program to implement Queue ADT using linked lists #include&lt;iostream.h&gt; #include&lt;conio.h&gt; #include&l ...

0 Comments. 415 views since Aug 9, 2010