Guest
#2584727
This may be a long shot, but anyway...
Say I have lots of arrays named list1[], list2[], list3[], etc.
I want a while() loop where I do something like this:
while(1)
{
afunction(listX);
}
....where X is incremented each time.
In case you wonder why I want to do this, I'm saving C arrays from
Wireshark to feed into C code for testing and the arrays it generates
have incrementing numbers. Typing in all these array names manually is
tiring.