#include int val=0; int main() { int i; for(i=0; i<100; i++) { val++; __asm__ volatile ("nop"); } // printf("done\n"); return val; }