C++, IDEs, wxWidgets
Hello readers,
I have enough C++ posts that it is time to organize them in a single page, so they are easy to find. Since I am big into FreeBSD, I consider C++ a must-know language.
C++ Basics
- How to return an string array from an enum in C++?
- How to get the size in bytes of a file in C++?
- What is the syntax for the switch and case statement in C++?
- How to create a directory in C++ in Windows?
- How to add an enum or enumeration to a class in C++?
- How to get the size of an array in C++?
- How to pause a Console application in C++ on Unix/Linux or the equivelent to the windows C++ system(”pause”)statement or the _getch() functions in conio.h?
- Understanding the Unary Scope Resolution Operator
- How to convert an int to a string in C++? (Also doubles, floats, etc…)
- How to convert a string to an int in C++? (Or to a float, double, etc)
C++ and Linux
C++ and Windows
- A simple example of creating or deleting a windows share using C++
- How to determine if an MSI patch (.msp file) has been applied using C++?
- A simple example of starting and stopping a service in windows using C++
- Avoiding the MSVCR100.dll or MSVCR100D.dll is missing error
Integrated Development Environments (IDEs) and Rapid Application Development (RAD)
- How to compile a wxWidgets application in Visual Studio 2008?
- How to setup Eclipse C/C++ Development Tools on Windows 7?
- How to find the file and line number of memory leaks using C++ with wxWidgets in Visual Studio 2008?
- How to determine the project type of an existing Visual Studio project?
- Avoiding the MSVCR100.dll or MSVCR100D.dll is missing error
WinPcap and tcpdump libraries
- How to compile WinPcap with Visual Studio 2010?
- How to read a PCap file from Wireshark with C++
- Unwrapping a packet with Pcap and tcpdump (Part 1 – Ethernet Header)
Deconstructors and Deleting Variables to Free Memory
Sample Code
- My Dice objects in C++
- The Tower of Hanoi as an example of using a recursive functions in C++
- Prime Factors calculator in C++