char c = 'E'; What numerical value does the variable c have?
Answers
Answered by
15
In C programming, int stands for integer, or a non-decimal numeric value. For example, -38, 15 and 0 are all int values. An int type is stored as 2 or 4 bytes. Older systems stored int as 2 bytes within a range of -32,768 to 32,767, but now it takes up 4 bytes and can range from -2,147,483,648 to 2,147,483,647.
Answered by
4
Answer:
69
Explanation:
Since the binary representation of E is 01000101 (from ASCII table).
and hence, the decimal value of 01000101=69.
Similar questions