float a = 'A'; // works
char ch = a; // error
Why char ch = a; will give Error ?
Answers
Answered by
1
Answer:
Error
Explanation:
Because You did write this in single or double Quotes you have to always put in single or double quotes to avoid error
Similar questions