Please ensure Javascript is enabled for purposes of website accessibility
Powered by Zoomin Software. For more details please contactZoomin

Application Server

Fill and use a two-dimensional integer array

  • Last UpdatedJul 22, 2024
  • 1 minute read

dim x[2,3] as integer;

dim i as integer;

x[1, 1] = 1;

x[1, 2] = 2;

x[1, 3] = 3;

x[2, 1] = 4;

x[2, 2] = 5;

x[2, 3] = 6;

LogMessage(x[2, 3]);

for each i in x[]

LogMessage(i);

next;

TitleResults for “How to create a CRG?”Also Available in