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
~209 People Reached
Favorite Forums
Favorite Tags
c x 4
Member Avatar for patkhor

Hi, I found this code for shuffle one-dimensional int array somewhere: [CODE]void shuffle(int *array, size_t n) { if (n > 1) { size_t i; for (i = 0; i < n - 1; i++) { size_t j = i + rand() / (RAND_MAX / (n - i) + 1); int …

Member Avatar for Salem
0
111
Member Avatar for patkhor

Hi, I'm using fgets() to read lines of text file and display them. The fgets() is in an infinite loop. The problem occurs when I remove lines from text file while program is running. The lines count is correct, but the program display the old content of the file up …

Member Avatar for patkhor
0
98