I was wondering if you can create a list of integers.
As you know most of the other languages you can have a infinite list of numbers. But i don't know if you can do that with C.
in C you can do
int integers[20]; But I do not want to declare a size for it, instead I want a list that keeps on going forever.
and in addition, I have a structure
typedef struct someStruct
{
char data;
chat data2;
}STRUCT_REC,*SR;
in order to make a list of structures we just do STRUCT_REC list; right?