Posts by D. H. B. Marcos • 31 points
2 posts
-
2
votes3
answers871
viewsA: Polymorphism in C
Yes. You will be responsible for the implementation. There are libraries ready as http://ooc-coding.sourceforge.net. I recommend using C++, if possible. It is possible to create a struct to…
-
1
votes1
answer477
viewsA: How to increment the index of an unlimited array?
include a variable with the size of the list: unsigned int product_list_size. typedef struct { char name [50]; unsigned int product_list_size; int products_list []; } list_t; // ... list_t list…