User profile: Nick van Kaam

User info
User name:Nick van Kaam
Name:Nick van Kaam
Bio:C++ Game programming student
History
Joined:
Number of posts:4
Latest posts:

bool v/s int flag
There are some differences to them. Example: with an int: 1 != -1; with a bool: bool(1) == bool(-...

traversing a linked list
Instead of a for loop I usually use a while loop, always works for me [code]instanceofiter = iter; ...

Reading data from a file
Thanks for your reply! Hmm yes sounds logical, this is the first time I'm really trying to do somet...

Reading data from a file
Hey there, I'm trying to load in data from an external file for processing. But I'm having some tro...