Computer Science, asked by shaikhfatima907, 4 months ago

plz if knowing then only tell ... otherwise I'll report your answer ok ​

Attachments:

Answers

Answered by anindyaadhikari13
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 Oreki
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