Question 16
Consider the C program given below.
#include <stdio.h>int main(){ for(int i=0; i<15; i++) { if(i%3==0) { continue; } printf("Hello\n"); } return 0;}How many times “Hello” gets printed?