Problem at 58:00 timestamp
@kunaldude04 integer and character arrays act in different manners. What was shown in the video is only true for character arrays. Although, integer 2-D arrays are also stored in a linear structure, but when it comes to printing, it’s character arrays that gets printed till ‘\0’ or the garbage is encountered, whereas, it prints the address of the element for integer array, unless the proper indices are provided for it.