Source Code: Programing Source Code

The “Hello, World!” Program in C

The “Hello, World!” Program in C

This is a simple “Hello, World!” C program to display "Hello, World!" text on the computer screen or display device. Typically, the best way to…

C Implementation of Base64 Encoding and Decoding

Base64 encoding and decoding schemes are commonly used to encode binary data. Normally this is required when textual data needs to be transferred over the…

Kruskal’s Algorithm Implementation in C

This is the implementation of Kruskal's Algorithm in C Programming Language. This algorithm is directly based on the generic MST (Minimum Spanning Tree) algorithm. Kruskal's…

Porter’s Algorithm in C

Originally written in 1979 at Computer Laboratory, Cambridge (England), it was reprinted in 1997 in the book "Readings in Information Retrieval". Initially it was written…

Add time using structures in C++

This is a C++ implementation of adding time using structures. A structure is a convenient tool for handling a group of logically related data items. Structure…

Common Text Transformation Library

Common Text Transformation Library, CTTL for short, is a set of C++ classes and functions to understand and modify text data. The library implementation is…

Counting Words, Lines and Characters in a Text File in C

This is a small C language program that can read a text file. The program is given file name as command parameter and it reads…

C Program of Library Management System

This is a C program to implement Library Management System by which a librarian can operate a simple library. It uses Linked List, Stack and…

Java Program to Demonstrate the Use of Linked List

This is a very simple implementation of linked list in java programming language. Very nice and well commented java source code for beginners.

Java Program to Show Stack Implementation

This is a simple Java program to demonstrate the Stack data structure implementation. This code provides a simple implementation of a stack with basic operations…