User profile: CPPAWhile

User info
User name:CPPAWhile
History
Joined:
Number of posts:151
Latest posts:

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 Questions
I 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 function
The below code should create a board (not using contiguous memory). This makes coding easier (and a...

Buffer overflow
Recompile with -g if you want to debug in gdb: gcc -o example -g -fno-stack-protector -m32 -z execs...

Subclass Object in Baseclass/Superclass
I wasn't sure if you were concerned with "functionality" or the semantics of the C/C++ language. Yo...