User profile: knowclue

User info
User name:knowclue
History
Joined:
Number of posts:54
Latest posts:

Help with my guessing programm
Assuming that you are only allowing the values from 1 - 100 any number can be guessed correctly with...

Help with structure c code
Are you using c or c++? In c strings are most often represented as character arrays. In c++ you need...

Need Help with Funciton to find Median- Using Array
Great job. Glad I could help.

Need Help with Funciton to find Median- Using Array
Try printing out the values like this [code] int findMedian(int array[], int size) { int median, m...

Need Help with Funciton to find Median- Using Array
This is the output I get when I run your current code 0 0 1 2 2 8 10 20 20 40 50 100 ...