Friday, June 29, 2018

Arrays

Arrays can be declared by adding brackets ( [ ] ).
You can set the maximum number of array elements by putting the number in the
brackets.
Array values can be set by specifying the index when assigning the value.


real realUnlimtedArray[]; // Unlimited index values
real realLimitedArray[10]; // maximum of 10 values
realLimitedArray[2] = 3.142;


Best Regards,
Hossein Karimi 

No comments:

Post a Comment

Configure the Firewall on the Enterprise Portal Server

After you install Enterprise Portal, enable Web Server (HTTP) in Windows Firewall. If you do not enable the web server in Windows Firewall...