Top "Member-variables" questions

Weird "candidate expects 1 argument, 0 provided" in constructor

I'm making a simple threaded server application in C++, thing is, I use libconfig++ to parse my configuration files. Well, …

c++ exception-handling construction member-variables function-try-block
When and why to declare member variables on the heap C++

Ok, so I'm very new at C++ programming, and I've been looking around for a couple days for a decisive …

c++ class heap member-variables
How to access a structure variable inside another structure?

I have two typedef struct in header file. typedef struct { int fallLevel; unsigned long lastStepTime; } PlayerFallStruct; typedef struct { int id; …

c pointers struct member-variables