User profile: Splux

User info
User name:Splux
History
Joined:
Number of posts:45
Latest posts:

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...

Strings
All 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 ints
Don't seed the random function everytime you use it. So, add [code]srand(time(NULL));[/code] to mai...