adspace
main()
{
char a[4]="HELLO";
printf("%s",a);
}
Answer Posted / susie
Answer :
Compiler error: Too many initializers
Explanation:
The array a is of size 4 but the string constant requires 6
bytes to get stored.
| Is This Answer Correct ? | 2 Yes | 2 No |
Post New Answer View All Answers