Question 15
Consider the following code snippet.
#include <stdio.h>int main() { for (int i = 1; i < 5; i++) { for (int j = 0; j < 6; j++) { printf("Hello C\n"); } } return 0; }How many times will Hello C be printed?