Here's a quick tip that is useful if you are sending data over a network. If you ever messed with any sockets in programming then you know you can onl
C++ Tips
A common area that people don't even know exist in C++, is called literals or literal constants. But even though you may not have heard of the term be
C++ Tips
Arguably no other area of C++ confuses more people and causes more frustration than pointers. Here's a few quick tips to keep safe while using them.
C++ Tips
This tip actually comes out of a "bug" that Blommis found a while back. If you want to create a string (or you can do this for comments too) that sits
C++ Tips
Here's a quick helpful tip that people often overlook. You can quickly initialize the values of a struct using shorthand notation:
struct SEntity
C++ Tips
If you are having trouble with your C++ programs opening and closing really fast, here's a quick fix. Add the following code to the end of your main f
C++ Tips