Question:Which of the following sets of conversion statements may result in the loss of data?
A int i; char c; i=c; c=i; B int i; char c; i=c; c=i; C int i; float f; i=f; f=i; D None E All
+ AnswerC
+ Report