brintos

brintos / llvm-project-archived public Read only

0
0
Text · 219 B · b8f977e Raw
15 lines · c
1#include <stdio.h>2 3int stop_symbol() {4  static int s_cnt = 0;5  printf("I am in the stop symbol: %d\n", s_cnt++);6  return s_cnt;7}8 9int main() {10  for (int i = 0; i < 100; i++) {11    stop_symbol();12  }13  return 0;14}15