Source Code: Programing Source Code

C Programming: Example C Program to Understand Functions

C Programming: Example C Program to Understand Functions

This C source code demonstrates the implementation of fundamental mathematical operations using functions in the C programming language. It includes functions for calculating the square…

C Program to play with variables and their addresses

This is a simple C program to show pointers and how you can use pointers to print address of variables and their contents. This program prints…

C Programming: File Listing Utility – Directory Structure

The C program is a file listing utility that displays information about files in a specified directory. It uses command line arguments to display the…

Copying One File to another in C

This is a simple C program that copies the contents of one file onto another file. It is similar to Unix's cp  command. This C…

C++ Enumerated type variable [C++ Enum]

This C++ program shows how to use enumerated type . The enum is a compound data type and works in C++ exactly the way it…

Defensive Programming Techniques

This source code is from Thinking in C++, 2nd Edition, Volume 2, by Bruce Eckel & Chuck Allison. You can use Borland, G++ (For version…

C# Code that Prints the Date and Time in Various Formats

This is a simple C# program that returns the current date and time in various formats. This program uses the DateTime.Now property to get the…

Exporting PowerPoint Slides to Images in C#

This is a very simple Visual Basic source code to export all the slides from a PowerPoint presentation. This source code can export images in…

Inverts the case of the selected text

This is a visual basic 6.0 source code that inverts the case of the selected text. If the upper case text is selected then it…

wav sound player class

This is a visual basic 6.0 wav sound player class that plays any selected sound file in .wav format. It has the filename property to…