Create Button in C++ with Win32 API C and C++ / Miscellaneous
Im Posting Codes for creating buttons in C++ with pure win32 API coding. There are two buttons with click event One is Simple Button and second is Icon Button, Also Screenshoot is included.
Data Structures C and C++ / Miscellaneous
We have already learned how groups of sequential data can be used in C++. But this is somewhat restrictive, since in many occasions what we want to store are not mere sequences of elements all of the same data type, but sets of different elements with different data types.
Size of Structures C and C++ / Miscellaneous
In this programming tutorial we will see that 2 structures with the same elements but with different arrange of elements make a different size of structure.
GNU Debugger - GDB C and C++ / Miscellaneous
A debugging tool to debug errors in C and C++ programs. A debugger is the best friend of a software programmer. This tutorial assumes you already know how to program in C and C++ and you can compile and execute programs.
ppC++ Manual C and C++ / Miscellaneous
ppC++(acronym for "ppC++ preprocessed C++"), is an HTML-preprocessed C/C++ programming language. This preprocessor lets you write server-side programs in C++ inside your HTML code and brings new additional features which make web programming easier.
Sorting Algorithms in C C and C++ / Miscellaneous
Sorting in general refers to various methods of arranging or ordering things based on criterias (numerical, chronological, alphabetical, hierarchical etc.).
C# Version 2.0 Specification C and C++ / Miscellaneous
C# 2.0 introduces several language extensions, the most important of which are Generics, Anonymous Methods, Iterators, and Partial Types. Generics permit classes, structs, interfaces, delegates, and methods to be parameterized by the types of data they store and manipulate.
Casting in C++ C and C++ / Miscellaneous
The new C++ standard is full of powerful additions to the language: templates, run-time type identification (RTTI), namespaces, and exceptions to name a few. This tutorial discusses one of the minor extensions: the new C++ casting operators.