Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
Ranked #55.0K
Ranked #4K
~860 People Reached
Favorite Tags

3 Posted Topics

Member Avatar for klemme

Hi, I'm not sure about <option></option> I don't think <option> can use in input form. If you want to use radio or check box use <input type="radio" value=".."/> or <input type="checkbox" value="../> otherwise, when you click submit, there's actually no value input for your edit_page.php Or you can keep your …

Member Avatar for klemme
0
191
Member Avatar for amishraa

Hey guys, I have done for this problem. Overall, I'm using the link list and node. I treat 1 line with 6 grades + an average as a node. And a list contains 7 nodes. --------------------------------------------------------- [code] #include <iostream> #include <fstream> #include <cstdlib> #include <string> #include <algorithm> using namespace std; …

Member Avatar for cibaiciao
0
413
Member Avatar for helixkod

To find median, first of all, we have to sort the sequence of numbers, after that we can do average for odd and even size. Hope it helps. You can use qsort to sort the sequence. //comparing function int compare(const void *a,const void *b){ return (*(int*)a-*(int*)b); } //median fuction after …

Member Avatar for cibaiciao
0
256

The End.