Question: What would be printed on the standard output as a result of the following code snippet?char i = 'A';
char *j;
j = & i;
*j = *j + 32;
printf("%c",i);
A
B
C
D
E
An error will occur
B
a
C
A
D
b
E
c
Note: Not available