Imagine in a conventional program like C, you have initialized k = 0, and then entered a while loop. Inside the loop you have a line like:
if(condition) {k=k+1; array[k] = expression;}
How do I do the equivalent in LabVIEW?
The actual LAbVIEW operation I am trying to do is to record a reading every time the user presses a button in a non-time dependent application.
Thanks.