Should this function be a member of parent or child?You seem to be leaning towards 2) as the solution which avoids the problems of back-pointing to the ...
GCC (MinGW-w64 through MSYS2) on Windows QuestionsI generally have the same problem as you - how to deploy. I usually give up on finding a runtime in...
Connect Four Board- dynamically allocating 2D array using functionThe below code should create a board (not using contiguous memory). This makes coding easier (and a...
Buffer overflowRecompile with -g if you want to debug in gdb: gcc -o example -g -fno-stack-protector -m32 -z execs...
Subclass Object in Baseclass/SuperclassI wasn't sure if you were concerned with "functionality" or the semantics of the C/C++ language. Yo...