Hello,

I think I understood what you are saying. At the moment, I am trying to understand the codes regarding currency strengths.

#define MAXCURRENCIES 32
var CStren[MAXCURRENCIES],CStrenSum[MAXCURRENCIES];
int CNum[MAXCURRENCIES];
char CNames[MAXCURRENCIES*4];
int NumCurrencies = 0;

Regarding CNames, the size of the array is 32 * 4 = 128.

Does this mean that CNames can hold 128 elements?
If yes, is there any reason why number 4 is chosen?

Thank you for your response earlier, it was much appreciated