Hi everyone,<br>Are there any functions to identify the initiation,condition and iteration part of the loop?<br>Example: for(i=0;i<10;i++)<br>  {<br>    a[i]+=1;<br>  }<br>I want to know the name of the variable used in the loop(i) , the initiation(i=0), condition(i<10) and the iteration(i++) part of the loop.<br>
Thank you:)<br>