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
~4K People Reached
Favorite Tags
c x 10
c++ x 3
php x 2
java x 1
Member Avatar for NRaf

I'm going crazy. I've been trying to a linked list of a struct (which stores some strings and a character) however I've had no luck. It's just not working and I've been working on this for hours on end. Note: StorePtr is a pointer to the Store struct (which stores …

Member Avatar for jephthah
0
120
Member Avatar for NRaf

Technically this question isn't related to any specific language. Basically, what I need to do is extract information from a website relating to the current logged user. The website has your standard login form - it seems to use JSP as the language. What I need to do is find …

Member Avatar for ejosiah
0
74
Member Avatar for NRaf

*sigh* Malloc get's me every time... Basically what I'm trying to do is read data from a file to populate a square array on integers. I'm declaring the array as 'int** matrix' in main(). I pass this to the function which handles reading the file (the parameter for the function …

Member Avatar for Dave Sinkula
0
85
Member Avatar for NRaf

I was wondering if the following fuction is a safe way to get input from a user (with a specified length). [CODE=c]char *input(int inputSize) { char str[inputSize + 2]; /*DO STUFF HERE (i.e. GET INPUT, CHECK IF CODE IS CORRECT, ETC*/ return &str[0]; }[/CODE] Is there anything that can go …

Member Avatar for Narue
0
103
Member Avatar for NRaf

It might be an issue with my laptop's IE6 although I haven't ascertained this. Anyway, I'm having a really weird issue. When I open my website in IE6 and click on a link inside that page, the page doesn't load for some reason. I just get the background color and …

Member Avatar for NRaf
0
206
Member Avatar for NRaf

Hey, I'm having trouble with this piece of code. Basically, it's meant to look at a map file (which basically is a bunch of URLs paired to an ID) and then go through another file and replace each URL with it's corresponding ID. The code seems to work fine, but …

Member Avatar for Salem
0
3K