C and C++ Programming Resources

Share/Save/Bookmark
Custom Search

Archive for October, 2008

Demonstration of Linked list in java

Posted on October 31st, 2008 0 Comments

Demonstration of Linked list in java
This is a very simple demonstration of linked list in java programming language. Very nice and well commented java source code for beginners. User can “get” and “set” the list items as well as traverse through “previous” and “next ” items. This java program can create a linked list using one object or an array of... 
Read More | Make a Comment

Stack Implementation in Java

Posted on October 30th, 2008 0 Comments

Stack Implementation in Java
An object of type IntStack is a stack of real numbers, with the standard stack operations push(int N), pop(), and isEmpty(). A makeEmpty() operation is also provided to remove all items from the stack. Internally, the stack is implemented as a linked list. /******************************************************* * MYCPLUS Sample Code - http://www.mycplus.com... 
Read More | Make a Comment

Validating the email address in ASP

Posted on October 29th, 2008 0 Comments

Validating the email address in ASP
The IsValidEmail function checks for a valid email, IsValidEmail returns True if the email address is a valid email, IsValidEmail returns false if the email address isn’t proper syntax. The code is well commented and should explain what is happening . This code checks for @ and a . period sign as well as only acceptable characters. i.e. if a user have entered... 
Read More | Make a Comment

Factorial of a Number

Posted on October 28th, 2008 2 Comments

Factorial of a Number
This program calculates the the factorial of an integer number entered by the user. The function uses for loop to calculate the factorial and returns the number. Program terminates if a non integer number is entered. This C language program uses for loop in just a single statement to calculates the factorial of integer number. /******************************************************* *... 
Read More | Make a Comment

Sams Teach Yourself Computer Basics in 24 Hours (3rd Edition)

Posted on October 27th, 2008 0 Comments

Sams Teach Yourself Computer Basics in 24 Hours (3rd Edition)
Sams Teach Yourself Computer Basics in 24 Hours is the replacement documentation that you don’t get with sub-$1000 computers. It’s designed to be an “all-in-one solution” to help users to get up and running on their computer and learn all the software applications that came pre-loaded on their system. This book is a cost-efficient alternative... 
Read More | Make a Comment

PHP and MySQL for Dynamic Web Sites: Visual QuickPro Guide

Posted on October 26th, 2008 0 Comments

PHP and MySQL for Dynamic Web Sites: Visual QuickPro Guide
When static HTML pages no longer cut it, you need to step up to dynamic, database-driven sites that represent the future of the Web. In PHP and MySQL for Dynamic Web Sites: Visual QuickPro Guide, the author of best-selling guides to both the database program (MySQL) and the scripting language (PHP) returns to cover the winning pair in tandem?the way users work... 
Read More | Make a Comment

Upgrading and Repairing PCs, 15th Edition

Posted on October 25th, 2008 1 Comment

Upgrading and Repairing PCs, 15th Edition
Upgrading and Repairing PCs is the runaway best-selling PC hardware book of all time and one of the best-selling computer books ever! This 15th Edition is loaded with the most up-to-date hardware information anywhere. World-renowned PC hardware expert Scott Mueller has taught thousands in his weeklong seminars and millions through his books, videos and articles.... 
Read More | Make a Comment

Data Structures and Algorithm Analysis in C++ (2nd Edition)

Posted on October 25th, 2008 0 Comments

Data Structures and Algorithm Analysis in C++ (2nd Edition)
In this second edition of his successful book, experienced teacher and author Mark Allen Weiss continues to refine and enhance his innovative approach to algorithms and data structures. Written for the advanced data structures course, this text highlights theoretical topics like abstract data types and the efficiency of algorithms, as well as performance and... 
Read More | Make a Comment