C and C++ Programming Resources

Share/Bookmark
Custom Search

The C++ Standard Library: A Tutorial and Reference

Posted on April 4th, 2010 0 Comments

The C++ Standard Library: A Tutorial and Reference
Programming with the C++ Standard Library can certainly be difficult task. Nicolai Josuttis’s The C++ Standard Library is one of the best available books to using the built-in features of C++ effectively. The C++ Standard Library provides lots of built-in functionality in the form of the Standard Template Library (STL). The STL was created as the first... 
Read More | Make a Comment

Common Text Transformation Library

Posted on August 22nd, 2009 0 Comments

Common Text Transformation Library, CTTL for short, is a set of C++ classes and functions to understand and modify text data. The library implementation is based on STL classes and algorithms. The library provides components for creating lexical analyzers making practical use of EBNF grammars. Template meta-programming and operator overloading offer features... 
Read More | Make a Comment

50 C/C++ source code websites

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

Reading Files

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

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

Posted on November 21st, 2008 0 Comments

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

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


Page 1 of 24123456789101520...Last »