How do I calculate the elapsed time and see how many instructions a specific operation has occurred
For example
while (x <10 && x <50)
x ++;
How can I measure how many instructions a loop like and what the elapsed time is?
Or are there functions that we know precisely the time elapsed in NI...