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 An error will occur 

B a 

C A 

D b 

E c 

+ Answer
+ Report
Total Preview: 1245

Copyright © 2024. Powered by Intellect Software Ltd