The program below contains an statement that is clearly not allowed (although it does not produce errors on all compilers). Answer the two questions that follow: 1 #include 2 3 int main(void) 4 { 5 char string1[] = "Hello"; 6 char string2[] = "F1 World!"; char* ptrl = stringl; 8 char ptr2 = string2; 6 9 ptr2= ptr2 + 3; 10 11 printf("%s %s\n", string1, string2); printf("%s%s\n", ptri, ptr2); 12 13 printf("p\n", ptrl); 14 printf ("Sp\n", ptr2); 15 printf("Bu\n", ptrl - ptr2); 16 17 return 0; 18) What line number contains the illegal statement? Why is the statement illegal? Problem 2. [2 points | PLO K1] Consider the following program. Write the output it will produce in the terminal window in the space provided below. #include int main (void) int b = 11; float f= 15.333; const char* s = "The results of data analysis are printed below: \n"; printf("%sError location = %X\n", s, b); printf ("Standard deviation = %.2f%8", £); return 0; } Terminal Window Output: 7