Common Text Transformation Library
Common Text Transformation Library, CTTL for short, is a set of C++ classes and functions to...
Read MoreCommon Text Transformation Library, CTTL for short, is a set of C++ classes and functions to...
Read MoreThis is a small C language program that can read a text file. The program is given file name as command parameter and it reads the file line by line. The program will prints out number of characters and words in each line.
Read MoreThis is a C program to implement Library Management System by which a librarian can operate a simple library. It uses Linked List, Stack and Pointers to implement different features of the library system. The program also uses struct data structure to add records in the library.
Read MoreThis is a very simple implementation of linked list in java programming language. Very nice and well commented java source code for beginners.
Read MoreThis is a simple Java program to demonstrate the Stack data structure implementation. This code provides a simple implementation of a stack with basic operations (push, pop, and isEmpty).
Read MoreThis is a simple C# .NET Program to validate email address. The ValildateEmail() function checks for a valid email and returns true if the email address is a valid email otherwise it returns false if the email address is not proper syntax. The code is well commented and should explain what is happening .
Read MoreThis C program is designed to compute the factorial of a user-entered integer. The program employs a for loop to calculate the factorial and then displays the result. The user can continue inputting positive integers to obtain their factorials until a non-integer input is provided which terminates the program.
Read MoreThis is a small script that can display the current time in “Military Time” format or “12 Hour Time” format with the push of a button. It shows two radio buttons to change the time format and a text box to display the time.
Read More