plz if knowing then only tell ... otherwise I'll report your answer ok
Attachments:
Answers
Answered by
3
Given,
int res='A';
We have to find the value of res.
ASCII Value of Capital A is 65
Hence,
res=65;
The value of res is 65(int data type).
Answered by
2
After Execution:
res = 65
Explanation:
As char 'A' is implicitly type casted into int, the Unicode value of 'A' is stored in res, which is 65.
Similar questions