[Solved] First chance exception without compiling errors
There are a lot of issues in your code that will result in problems: Your constructor Macierz(int _x, int _y) doesn’t work like you think it does. Only wiersze[0] will be valid after it finishes and any non-zero index will access unknown memory. The issue is really with your design of your 2D matrix class. … Read more