Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
it depends on "If" condition. if your condition need some calculation, the needed clock cycle will be more than a simple decision.
for example, processing of "if((X/Y)>=45.678)" need more clock than "if(PORTA.B3)".
if you want to know exact values, you can see "Listing" (view>Listing). in listing file you can see all of the C statements and their corresponding assembly instruction.
You can also see the time. Build the code. Then, in the "Run" menu, click "Start Debugger". Step over to the line before the if condition. Reset the stopwatch. Then step over to the line after the condition ends. You will see the time listed.
Hope this helps.
Tahmid.