5
votes
4answers
409 views
slightly weird (imo) C++ code
Sorry if this is simple, my C++ is rusty.
What is this doing? There is no assignment or function call as far as I can see. This code pattern is repeated many times in some code I inherited …
2
votes
What Does {0} Mean in C?
It's been awhile since I worked in c/c++ but IIRC, the same shortcut can be used for arrays as well.
…
3
votes
Call unmanged Code from C# - returning a struct with arrays
Since you say the c++ code seems to run fine alone, there must be something wrong on the c# side.
Try marshalling the char arrays as char arrays instead of strings and see if that helps. A …
0
votes
traverse a Binary search tree
Here is some psuedo code of a preorder that may help.
void Preorder( out, int parent )
{
out << items[parent];
left = parent * 2 + 1;
right = parent * 2 + 2;
…
4
votes
How to implement collision effects in a game ?
one idea : Inheritance : Each object a player can collide with has a CollideWithPlayer method that does whatever the object needs
c++ like psuedo code for example …
3
votes
