Month: September 2008
Stack implementation with array
Posted by M. Saqib | Sep 28, 2008 | Java: Java Programming Concepts |
This java code basically implements stack functionality. It can Pop and Push an item in stack with the help of array. The item can only be an integer number and inernally the java program uses arrays to maintain items in stack....
Read MoreLame – MP3 Encoding Software
Posted by M. Saqib | Sep 27, 2008 | Utility Programs and Applications |
LAME is an educational software used for learning about MPEG Audio Layer III (MP3) encoding. The goal of the LAME project is to use the open source model to improve the psycho acoustics, noise shaping and speed of MP3. LAME is distributed as source code only.
Read MoreException Handling in C#
Posted by M. Saqib | Sep 26, 2008 | C# Programming: Different Articles on C# Programming |
An exception usually signals an error. Thought it doesn’t always indicate an eror, it can also signal some particularly unusual even in your program that deserves special attention. Exception & Errors Handling No mater...
Read MoreFrom C to C++ – What’s new?
Posted by M. Saqib | Sep 25, 2008 | C++ Programming: Different Articles on C++ Programming |
As we begin the study of C++ and object oriented programming, a few comments are in order to help you get started. Since the field of object oriented programming is probably new to you, you will find that there is a significant amount of new terminology for you to grasp. This is true of any new endeavor and you should be warned not to be intimidated by all of the new concepts.
Read MoreWorking with Namespaces in C#
Posted by M. Saqib | Sep 24, 2008 | C# Programming: Different Articles on C# Programming |
Every application begins with a namespace in C# .NET that has the same name as the project. Of course, you can change the namespace to anything you like in order to maintain compatibility with other projects. For example we declared namespace Mycplus.CSharpBasics while taking an Overview of C#. We can write the whole application with in one namespace or we can declare multiple namespaces as needed in our project. The general syntax of declaring a namespace is
Read MoreScientific Calculator Program
Posted by M. Saqib | Sep 23, 2008 | Utility Programs and Applications |
This graphical scientific calculator purely written in C programming language. It uses small functions to draw buttons on the screen and perform scientific operations like conversion, logarithm, and other operations. Every operation can be performed using the mouse buttons as well as keyboard. It can perform almost all the functions shown on the screen except few functions which will be implemented in the next version of this calculator code.
Read MoreStatements in C#
Posted by M. Saqib | Sep 23, 2008 | C# Programming: Different Articles on C# Programming |
The real nuts and bolts of a programming languages is that which controls the flow of a program called statements. Types of Statements in C# C# borrows most of its statements directly from C and C++, though there are some...
Read More