Depends what the task is. What do you have to do? Do you understand the requirements? If you don't know what to do, why is that? Have you not...
Unix or Windows?
The way I would do this is to draw several columns: A and B for the first two counting up from 00 to 11 to list all 4 possibilities, then the next...
Does it make any difference if you start your code with CLD (clear direction flag)?
Before you fix this bug, have a bit of fun by trying a larger parameter, maybe up to 5, but not much bigger unless it's a computer you can freely...
At count=0, try3.exe calls fork() and creates a new process. That new process displays 9335. Remember that you have two identical processes...
You will need to post some code that shows the problem. It is likely you are seeing correct behaviour and simply misunderstanding it, but I...
You need to keep track of all the lines you want displayed and redraw them as needed. You can either test each line for intersection with the...
If you enter 1,3,2,2,3,-1 then the output will be 3,2=2. If that's a problem and you still want 2,3=2, then make the "add a new entry" step...
So if you enter 1,2,3,4,-1 there will be 4 entries on the list each with COUNT=1, and MAXCOUNT=1 so part 2 will display all four as 1,2,3,4=1. If...
Your code just stuffs all input onto the end of the list without doing any processing. This will make your max_repeat function quite tricky to...
The 3rd line of main is exactly what I said.
Without the code it's impossible to answer your questions. But remember that char *name declares a variable called name that is a pointer to the...
How far have you got and where are you stuck? Do you understand the project requirements? How large in bytes is your CSV file? Are you really...
A 2D array with dimensions [m][n] can be represented as a 1D array with dimension [m*n]. So that is probably what the tutor wants you to do. So...
Did you compile this code? Did you get any errors? If not, did it run OK and do what you expected? Did you think up any possible boundary...
C is a subset of C++ so all C code is also valid C++ code. You don't really need all 12 conversion functions. Just pick one as your "internal"...
People often post homework assignments here expecting us just to do it for them. Take my questions one at a time. I have been programming since...
Not only what Shabbir said, but also your requirements seem to have changed: We are not going to write your code for you, but we can help you...
Why isn't a simple number enough? For example, SELECT ... WHERE BATCHES.ID=105; is clear enough. You shouldn't need to include an abbreviation...
Separate names with a comma.