Continue
The continue statement transfers control tothe next iteration of the loop.
Example:#define MAX_STR_SIZE 12...char s1[MAX_STR_SIZE ] = “Donald Duck”;char s2[MAX_STR_SIZE ] = “Jerald Burk”;char m[MAX_STR_SIZE ];int i,count = 0;for (i=0;i< MAX_STR_SIZE;i++){ if (s1[i] != s2[i]) continue; m[count++] = s1[i];}printf(“%s\n”,m);/* m = ? */