No Image

Win32 File Sample

February 15, 2010 muthu 0

Win32 File Samples article tries to explain how to read from and write to Disk files using Win32 functions. Though Win32 is not user-friendly and […]

No Image

Unicode to ascii conversion

February 15, 2010 muthu 0

Unicode programming is supposed to be easier with windows. But there are certain weird instances when we need to write some weird code too. This […]

No Image

STL Set by ub40

February 15, 2010 muthu 0

STL Set A set is a simple unique sorted associative container. It is a simple associative container as the key and the value are the […]

No Image

STL Map by ub40

February 15, 2010 muthu 0

STL Map A map is a sorted unique associative container that maintains a collection of key value pairs. These collections are sorted by the key. […]

No Image

STL List by ub40

February 15, 2010 muthu 0

STL List A list is a sequential container optimised for insertions and deletions of data elements at arbitrary locations within the collection. However, a list […]

No Image

STL Vector by ub40

February 15, 2010 muthu 0

Vector   Vectors are sequential containers that are considered growable arrays, i.e., arrays that are flexible and grow as more data is inserted in them. […]