Write a program in c programming using continue statement.consider the following.

The program will allow you to enter numbers from 1 to 20.
When the loop reaches at 12, it skips the number and continue with rest of the numbers.with method

#include <stdio.h>

int main() {
int num;

for (num = 1; num <= 20; num++) {
if (num == 12) {
continue;
}
printf("Entered number: %d\n", num);
}

return 0;
}