I've done a project in which I needed to calculate the multiplications of very large numbers using LinkedList. However, even though I get the right answers I got an error message.
Process finished with exit code -1073741819 (0xC0000005)
This happens whenever one of the numbers is really large. I've looked at old posts but I couldn't find anything similar to my situation.
Here are the example outputs.
Example with error code Example without error code
I store the numbers in a LinkedList as digits. So, every node has a digit and there shouldn't be any issue about int/long thing I guess but I couldn't find what makes this. When I debug the code, I get the error pointer at the end of the code, where there is no code. Debug
I hope I explained my problem properly, thanks in advance.