Posts by Antony Freytas • 11 points
1 post
-
1
votes1
answer477
viewsQ: How to increment the index of an unlimited array?
How can I increment an array within a structure? This is my structure: struct list { char name[50]; int products_list[]; } LIST[10]; I wanted to know the current number of elements in the array…