main(){char a[4]="HELLO";printf("%s",a);} Answer: Compiler error: Too many initializersExplanation:The array a is of size 4 but the string constant requires 6 bytes to get stored.