You've not done much yet. This isn't as difficult as it looks; there are several things you need to do, so break it down into tasks and debug as...
Probably undefined behaviour of some kind. As you're using fixed size arrays for strings check that you're not overflowing them, for example,...
http://lmgtfy.com/?q=oracle+ddl http://lmgtfy.com/?q=oracle+dml http://lmgtfy.com/?q=oracle+dcl
The question as you've copied it only says the base cannot be even, not the height. However there is a problem in that you don't get the correct...
Just run the display loop in the opposite direction, i.e. for(j=height-1;j>=0;j--)
Does this give you a clue? indexOfComp=25, compQty=25 I've already mentioned this before. The problematic code is *NOT INSIDE THE LOOP*....
I was going by the other debug in the program, i.e. #ifdef DEBUG printf(" %d 'Sorter Action' data files are created successfully\n",...
Again, you're still relying on strlen()==0 to determine if a value is NULL. This is not valid code. You should use NVL or indicators. For...
If the problem is "some bug", then the solution is "change some code". If you want a more helpful answer, give a more helpful problem...
My suggestion is to use indicators, and not to combine two columns with lot.lotid || '.' || comp.POSITION. Fetch back lot.lotid and comp.POSITION...
Very simple, by the looks of it. All you need to do is determine the maximum number M in the input file, then if the numbers are completely...
Don't be a smartass. YOU are asking US for help, therefore you don't know what you're doing, and we do. So if we ask questions, answer them even...
Your test for NULL is incorrect. You do not use either indicators or NVL(), one of which must be used if you want to accurately determine if a...
Older brother, is he?
Your copy constructor is not correct; l is a List, not an integer. Use l.count and l.Capacity instead. Where are you stuck on the AddElements...
strcpy, strcat and printf are your friends.
You would need to call the AddElement function for that.
Seems a funny thing for your brother to demand. Are you sure it's really your brother and this isn't just a fancy way of getting people to do...
Where are you stuck? You need to prompt the user (do you know how to write a message to the screen?) then get a number (do you know how to do...
Just take them one at a time. What do you think a, count and capacity should be set to for an empty list? (At least have a guess)
Separate names with a comma.