选择以下转换语句可能导致数据丢失的选项?
int i; char c; i = c; c = i;
int i; char c; c = i; i = c;
int i; float f; i = f; f = i;
都不是