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
~3K People Reached
Favorite Tags
Member Avatar for simps0n

Hello, guys! I have the following code:[CODE]#include<stdio.h> #include<string.h> #include<stdlib.h> struct list_word { char word[64]; struct list_word * next; }; typedef struct list_word itemWord; int main() { itemWord * curr, * head; fill list with words [B]remove duplicates[/B] show final list of words return(0); }[/CODE]So I experience difficulties when implementing the …

Member Avatar for rubberman
0
341
Member Avatar for simps0n

Hello, folks! I'm trying to parse RSS feed and display it on my own page. [URL="http://magpierss.sourceforge.net/"]MagpieRSS[/URL] looks good enough for me, but I have a little problem. I want to display not only the title and description of each article, but the thumbnail as well. For example, I tried to …

0
96
Member Avatar for simps0n

Hello, I am PHP newbie (or even worse) and I have a problem with one function. I want to load content of an [URL="http://xml.goalsfeed.com/wettbasis/index.php"]external page[/URL] and I use the [B]include()[/B] function. It's working, but the external page has some [important] pop-up windows (that use /goals.php file) that I want to …

Member Avatar for R0bb0b
0
106
Member Avatar for simps0n

Hello, guys! I have to generate 10 different numbers. What I do is to store the generated numbers in array. Before that I check the array for duplicates. It compiles, but I get some duplicates. Thanks in advance for any help.[CODE=Pascal]program rand; {$APPTYPE CONSOLE} uses SysUtils; var j, i, a, …

Member Avatar for DevonMcC++
0
1K
Member Avatar for simps0n

Hello, guys! I have to make a program with the following features. - [B]array of records[/B][code=Pascal]TYPE employeeRecord = RECORD name: STRING; surname: STRING; age: Integer; END; employeeRecords = ARRAY OF employeeRecord ;[/code]- [B]a procedure/function to ADD data into the array[/B] I did this one and I think it is working …

Member Avatar for simps0n
0
1K