datatypes

TwitterFacebook
Get flash to fully experience Pearltrees
http://www.cs.utexas.edu/users/moore/best-ideas/string-searching/

The Boyer-Moore Fast String Searching Algorithm

This algorithm, which Bob Boyer and I invented in about 1975, is the basis of the fastest known ways to find one string of characters in another. How might you look for the following pattern in the text below?
Introduction You've undoubtedly seen all these various string types like TCHAR , std::string , BSTR , and so on. And then there are those wacky macros starting with _tcs . And you're staring at the screen thinking "wha?" Well stare no more, this guide will outline the purpose of each string type, show some simple usages, and describe how to convert to other string types when necessary. http://www.codeproject.com/Articles/2995/The-Complete-Guide-to-C-Strings-Part-I-Win32-Chara

The Complete Guide to C++ Strings, Part I - Win32 Character Enco

Data Conversions - The Code Project - C++ / MFC

http://www.codeproject.com/Articles/2510/Data-Conversions Introduction Here are a few data conversions with small examples :- Decimal Conversions Decimal To Hex char hexstring[ 10 ]; int number = 30 ; itoa( number, hexstring, 16 ); Hex To Decimal