Sizeof operator doesn’t work properly after insertion an element
I am trying to make a program in C to insert an element to an array.
I used sizeof operator to determine array’s total number of elements but after inserting an element and reusing sizeof operator it seems that it doesn’t work properly (It gives me the same result without incrementing).
Thanks in advance.