Find the Errors
 
 
- #include <stdio.h>main() {	float f;   	scanf(“%d”,&f);	switch (square(g)) {	  case ‘4’:		printf(“Got a 2\n”);		break;	  case 16:	   	switch(f) {		   case 1:			printf(“Got a 1\n”);		   case 2:			printf(“Got a 2\n”);			break;		   default:			printf(“nothing..\n”);		}	}}int g = 4; int square(int j) { return (j*j); }