User profile: kkhalaf

User info
User name:kkhalaf
History
Joined:
Number of posts:35
Latest posts:

How to build a "Paint" like screen?
We all know the "Paint" program that comes with Windows OP. I am trying to build an application simi...

Back Propagation Neuron Network Design
I converted it to apply the XOR. It's not working but you are right, to keep it simple. Thanks for t...

Random number guesser
As mentioned: - #include <ctime> to use the time. - Write srand(time(NULL)) anywhere to get static...

Random number guesser
#include <ctime> and put the srand(time(NULL)) anywhere in your code to get different random numbers...

Back Propagation Neuron Network Design
I am trying to make a digit recognition program. I shall feed a white/black image of a digit and my ...