bool v/s int flagThere are some differences to them. Example: with an int: 1 != -1; with a bool: bool(1) == bool(-...
traversing a linked listInstead 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...