"object of variable size may not be initialized"[quote=dschinn][code]int x[i]=true;[/code][/quote] ...doesn't make sense. First, [tt]x[/tt] is decla...
Change binary number ex. 1=0, 0=1Are you storing the value as a string? If so, iterate through the string, and when you encounter 0, ...
Need some help with some keywords[tt]printf()[/tt] is a single function, whereas [tt]std::cout[/tt] is a chain of functions. [tt]std:...
Uses for PointersAlso, try to build a fully-functional linked-list without pointers. Edit: Another use for pointers ...
Function type checking@Mathhead200: [tt]explicit[/tt] can only be applied to constructors. Even if it were a constructor, ...