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);
char i = 'A'; char *j; j = & i; *j = *j + 32; printf("%c",i);
A An error will occur B a C A D b E c
+ AnswerB
+ Report