C and C++ Programming Resources

Share/Bookmark
Custom Search

Archive for September, 2008

C Calculator Program

Posted on September 29th, 2008 0 Comments

This is a simple calculator written in C language and works under DOS prompt. The calculator performs all the basic arithematic operations including addition, subtraction, trignometric calculations, and many other functions. It can also calculate logrithms, powers, and roots of integer numbers. /******************************************************* * MYCPLUS... 
Read More | Make a Comment

Stack implementation with array

Posted on September 28th, 2008 0 Comments

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. /******************************************************* * MYCPLUS Sample Code - http://www.mycplus.com * * ... 
Read More | Make a Comment

Lame – MP3 Software

Posted on September 27th, 2008 0 Comments

LAME is an educational software to be 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. LAME features: Many improvements in quality in speed over ISO reference software. MPEG1,2 and... 
Read More | Make a Comment

Exception Handling in C#

Posted on September 26th, 2008 0 Comments

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 how good our program is, it always have to be able to handle possible errors. Most applications today contain some form of error handling.... 
Read More | Make a Comment

What’s new in C++?

Posted on September 25th, 2008 0 Comments

As we begin the study of C++ and object oriented programming, a few commentsare 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... 
Read More | Make a Comment

Working with Namespaces in C#

Posted on September 24th, 2008 0 Comments

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... 
Read More | Make a Comment

Calculator

Posted on September 23rd, 2008 19 Comments

Calculator
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, logrithm, 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... 
Read More | Make a Comment

Statements in C#

Posted on September 23rd, 2008 2 Comments

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 noteworthy additions and modifications. Expression & Control statements Labeled & goto statements Control statements allow to branch... 
Read More | Make a Comment