This is my program
struct All_Modules
{
char* Name;
};
All_Modules First_Array[] = { { "hi\n" } };
All_Modules Next_Array[] = { { "hi1\n" } };
All_Modules Other_Array[] = { { "hi2\n" } };
int main()
{
}
Is there way to get list of All_Modules all array name like (First_Array,...) and show print them like this?
My array is : First_Array | and The of This array is : hi
My array is : Next_Array | and The of This array is : hi1
My array is : Other_Array | and The of This array is : hi2
I know we can set each array to print this but I want first system get the list of all array in All_Modules and detect the names and automatic print the Name value... Is it possible?