In a program I am writing, I want to loop through several object functions and use the results. To make it simple, I want to have an array that contains the function calls, which I can then loop through with a for loop. How would I do this? My understanding is that I'd need to declare the array type, and I don't know what data type I'd use. Thanks.
*Edit* I forgot to mention that these function calls will be to functions inside several separate objects of different types.
1