Course Content
Software Models
Software Models
0/1
Flowgorithm In-built Functions
Flowgorithm In-built Functions
0/1
Flowgorithm Call Symbol
Flowgorithm Call Symbol
0/1
Flowgorithm User-Defined Functions
Flowgorithm User-Defined Functions
0/3
Flowgorithm Recursion
Flowgorithm Recursion
0/1
Flowgorithm Turtle Graphics
Flowgorithm Turtle Graphics
0/2
Popular Programming Languages
Popular Programming Languages
0/1
Flowgorithm Expert
About Lesson

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.