EXAMPLE 2: TYPE MISMATCH ERRORS

 

Find errors in the following code. Also show memory contents when there are no errors.

int i;
char c;
float f;

i = 91;
i = 93;
c = 9;
c = '1';
i = 'A';
f = 31.2;
f = 34.3f;