Identify the error message int a[5] = {28, ‘y’, 45, 68, 12};
Answers
Answered by
1
Answer:
'y'
Explanation:
Since 'a' array is of Int data type so the character such as 'y' cannot be stored in that array.
Similar questions