Computer Science, asked by oliofficial004, 7 months ago

Identify the error message int a[5] = {28, ‘y’, 45, 68, 12};

Answers

Answered by kamrunnisa
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