Still, the array bounds are constrained by MAX in the loop. If tab_create is some goshawful unitialized number, it should still fit in an int, or...
I see no reason for it to seg fault. Perhaps there's some undefined operation in "main", which you don't show?
It appears you didn't read the "Hints before you make a post" thread. That's rude, because you have posted code that has lost its formatting and...
I'm new to this forum. If I were the owner, I'd ban your *** for dumping spam into a technical forum. Just sayin'. Get offline and come around...
db means 'define bytes'. It's a method of labeling a memory area and ititializing its contents. dup means to repeat the following definition the...
I won't write the program for you, but if you begin at the head, follow the links, and wind up back at the head, it's circular. If you run off...
Forgot to mention that "void main" is non-standard code. The standard specifies that main return an int. Some compilers, particularly less...
I might mention that iostream.h is deprecated and is provided for backward compatibility. One should use iostream without an extension. The...
A linked list is a degenerate form of a tree. If you make a linked list (which is linear) multidimensional, it ceases to be a list. It could be...
The answer is simple. Print it out, roll it into a ball, and shove it up your trailing orifice.
If you set b0 of the mask and AND it with the target, then you can tell if the target bit was set by the outcome. If it's set, increment your...
Furthermore, MVI is a move immediate instruction, expecting an immediate value in the instruction, and not a register. I would suggest that you...
I take it you're looking for a Hamming Distance or something. You can get a value with a zero in each bit that is different by using XOR. If you...
Sorry, my sig is not showing, and I can't edit the post. See DaWei on Pointers.
If you'd like to understand more about why you need to do that, see the link in my signature.
The time penalty for vectors is usually not severe enough to warrant not using it. However, if you'd like to reallocate, simply create a new,...
Separate names with a comma.