Posted on
February 27th, 2009 0 Comments
It’s well known that C/C++ languages are the most dominant programming languages around. As I mentioned in the previous post "Top 10 best applications written in C/C++" that
most of the big softwares, operating systems, games and other scientific tools and utilities are developed in C/C++. In this post, I have found 50 outstanding websites and...
Read More |
Make a Comment
Posted on
January 17th, 2009 0 Comments
This is a small C language program that can read a text file. The program is given file name as command parameter and it reads the file line by line. The program will print out number of characters and words in each line. The program will also print out the number of lines in the text file. File name should contain complete physical path or only the file name...
Read More |
Make a Comment
Posted on
November 21st, 2008 0 Comments
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 More |
Make a Comment
Posted on
October 31st, 2008 0 Comments
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
Posted on
October 30th, 2008 0 Comments
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
Posted on
October 29th, 2008 0 Comments
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
Posted on
October 28th, 2008 2 Comments
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
Posted on
October 26th, 2008 0 Comments
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