News

Jagged arrays are a special type of arrays that can be used to store rows of data of varying lengths to improve performance when working with multi-dimensional arrays ...
As strings (array of chars right?) need to have \0 at the end to signify the end of the string I add one to whatever the length of the string that I want to store is.
If you program in C, strings are just in your imagination. What you really have is a character pointer, and we all agree that a string is every character from that point up until one of the charact… ...