C and C++ Programming Resources

Applied Cryptography: Protocols, Algorithms, and Source Code in C, Second Edition

Posted on November 21st, 2008 .

Applied Cryptography: Protocols, Algorithms, and Source Code in C, Second Edition
Cryptographic techniques have applications far beyond the obvious uses of encoding and decoding information. For Internet developers who need to know about capabilities, such as digital signatures, that depend on cryptographic techniques, there’s no better overview than Applied Cryptography, the definitive book on the subject. Bruce Schneier covers general... 
Read Full Post | Make a Comment ( None so far )

Demonstration of Linked list in java

Posted on October 31st, 2008 .

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 Full Post | Make a Comment ( None so far )

Stack Implementation in Java

Posted on October 30th, 2008 .

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 Full Post | Make a Comment ( None so far )

Validating the email address in ASP

Posted on October 29th, 2008 .

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 Full Post | Make a Comment ( None so far )

Factorial of a Number

Posted on October 28th, 2008 .

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 Full Post | Make a Comment ( 1 so far )

PHP and MySQL for Dynamic Web Sites: Visual QuickPro Guide

Posted on October 26th, 2008 .

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 Full Post | Make a Comment ( None so far )

Check URL

Posted on October 22nd, 2008 .

Check URL
This script is particularly useful for those who have their site on a free webspace provider, then use a “come.to” redirecting service. What this script will do is analyze the URL the visitor is at, and if they did not came to your site via the redirecting URL, it can print out a message telling them that is your new URL. Neat! /******************************************************* *... 
Read Full Post | Make a Comment ( None so far )

Clock Type

Posted on October 21st, 2008 .

Clock Type
This is a really neat little script that can display the current time in “Military Time” or “12 Hour Time” with the push of a button. Give it a try, it’s neat! /******************************************************* * MYCPLUS Sample Code - http://www.mycplus.com * * * *... 
Read Full Post | Make a Comment ( None so far )


« Previous Entries |

Free Magazine Subscription

Tutorial Categories