Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
100% Quality Score
Upvotes Received
1
Posts with Upvotes
1
Upvoting Members
1
Downvotes Received
0
Posts with Downvotes
0
Downvoting Members
0
0 Endorsements
~1K People Reached
Favorite Tags
c x 31
Member Avatar for kloony

Can anyone please explain to me the following strange phenomenon? I have a code in C, and when I compile it is Windows Platform compiler (Borland 5.5), they compiling is fine and when I execute the program, everything turns out ok. However, when I use the same code and compile …

Member Avatar for creeps
0
197
Member Avatar for kloony

get the following error message when I have have a variable QUEUE and then for i:2500, I loop through QUEUE(i). I don't understand why Matlab is attempting to access QUEUE(-2.14748e+009)....Can anyone help me with this error? I suspect it might be a floating point problem, is it possible? ---------------------- ??? …

Member Avatar for kloony
0
123
Member Avatar for kloony

Hi Guys, it's me again! I have been posing memory-related problems for the past few days because I don't seem to understand what is the problem with my code. I kind of figured it's due to memory issues....so here's my question. Suppose I have a (first in first out) queue …

Member Avatar for kloony
0
351
Member Avatar for kloony

I have a first-in-first-out queue implementation such that when it is first initialized, a malloc is called to set aside memory for items that will be placed on the queue. When I am done with the queue, how do I free up the memory? My code for the queue is …

Member Avatar for kloony
0
377
Member Avatar for kloony

Hi Guys/Gals, Is anyone of you using/reading the above book by Robert Sedgewick? I am trying to write some graph algorithms using C and trying to learn it using the above book. Having some problems. It would be great if you are also using the book or have already mastered …

0
72
Member Avatar for kloony

Hi, I wrote a program in C and when I compiled, got the following message (word for word): Error: Unresolved external '_EDGE' referenced from C:\Graph\Test1.OBJ The funny thing is that the error is not the usual compiling error that tells me which line of my program has the error. That …

Member Avatar for kloony
1
175
Member Avatar for kloony

I have the following list-processing interface which I save as .h file. I don't see anything wrong with it but everytime I compile, it says that the declaration in line 2 is missing ";"..........can anyone please help? my code is: typedef struct node *link; struct node{ itemType item; link next; …

Member Avatar for Narue
0
116