#include "cyccounter.h" #include int main(int argc, char *argv[]){ cyccounter_timer_t t; int i, n; scanf("%d", &n); cyccounter_start(t); i = 0; loop: if(i >= n){ goto loopEnd; } i++; goto loop; loopEnd: cyccounter_stop(t); printf("%llu\n", cyccounter_cycles(t)); return 0; }