Printing ASCII Characters in C [ASCII Table]
The following program prints out the numerical codes of the printable/visible ASCII characters. This C program prints ASCII values of all the alphabets and special characters.
Read MorePosted by M. Saqib | Sep 9, 2008 | C Programming Source Code |
The following program prints out the numerical codes of the printable/visible ASCII characters. This C program prints ASCII values of all the alphabets and special characters.
Read MorePosted by M. Saqib | Sep 9, 2008 | C Programming Source Code |
This is a C program to demonstrate PC to PC Communication via RS232 port. Chat with only 3-wire connection. This program is tested with Turbo C++ editor Version 3.0. How ever, authors are not responsible for any damages that may happen to your computer. Please contact us if any problem exits.
Read MorePosted by M. Saqib | Sep 9, 2008 | C Programming Source Code |
MyPiano 3.0 is a simple piano developed in C++ using graphics functions. By using this piano,user can play, record music etc. This is the third version of MyPiano source code.
Read MorePosted by M. Saqib | Sep 9, 2008 | C Programming Source Code |
This C program finds the longest common sub-sequence between two strings. It implements the most famous dynamic programming algorithm. Dynamic programming is a computational technique used to solve complex problems by breaking them down into smaller subproblems and solving each subproblem only once, storing the solution to each subproblem and using it to solve larger problems.
Read MorePosted by M. Saqib | Sep 9, 2008 | C Programming Source Code |
The Smith-Waterman algorithm is used for comparing two sequences, typically biological sequences like DNA, RNA, or proteins. It finds the local similarities between the sequences, identifying regions where they match or align.
Read MorePosted by M. Saqib | Sep 9, 2008 | C Programming Source Code |
This is a Number Base Conversion Program written in C. It is designed to assist novice C programmers in understanding and implementing basic number base conversions. New C programmers can use this program as a reference to grasp fundamental concepts of number base conversions and modular programming in the C language.
Read MorePosted by M. Saqib | Sep 9, 2008 | C Programming Source Code |
This is telephone directory program written in C and uses BGI Graphics to display data. The program takes Name, Phone Number, Mobile Number, Address and saves it in newly created file. The program also shows saved record on screen. User can find and delete the records too.
Read MorePosted by M. Saqib | Sep 9, 2008 | C Programming Source Code |
This C code provides a simple and customizable implementation for creating text boxes that can be used to display tips, hints, or information in a game or application. The code is designed to be beginner-friendly and easy to integrate into C programs.
Read More