Print an Array

  • Print a single array element
  • Print the whole array

To print a single array element

You can use the Output symbol to print a single array element and use the index. 

For example, to print the first array element, you can use the following in the Output symbol.

arr[0] 

To print the whole array

To print an array in Flowgorithm, you can use a loop control to iterate each element of the array and print each array element.