Hi, in the declaration of IP_name:
int InputNumber;
...
// function that gets the InputNumber
...
char IP_name[InputNumber];
I have this error:
error C2057: expected constant expression
error C2466: cannot allocate an array of constant size 0
error C2133: 'IP_name' : unknown size
How can I solve this problem?
Thanks