List all different types of tokens in the following C program. Write the regular expressions for all of the tokens. main() { int i1, jj1; jj1 = 0; for (i1=0; i1 < 100; i1++) jj1 = jj1 + i1; printf("jj1 = %d\n", jj1); }