单项选择题

假设有以下代码:
String s="hello";
String t="hello";
char c[]='h', 'e', 'l', 'l', 'o';
下列选项中,返回false的语句是______。

A) s.equals(t);
B) t.equals(c);
C) s==t;
D) t.equals (new String("hello"));