Filling array with unique numbers?@AnEvilVegetable: Quick fix: [code] if(x == j) continue; [/code]
Do you listen to music while programming? If so, what music?I (usually) concentrate better while listening to music, so yes, I listen to music while programming...
StringsAll of your strings are declared as local variables in [code]void dictionary();[/code]. Which means,...
VC++2012 cannot open include file stdafx.h[code] #include <iostream> int main(int argc, char* argv[]) { std::cout << "Hello world\n"; ...
Populate an array with random intsDon't seed the random function everytime you use it. So, add [code]srand(time(NULL));[/code] to mai...