单项选择题

给出下列的代码,则以下哪个选项返回true
String s="hello";
String t="hello";
char c []= 'h','e','1','1','o';

A.equals(t);
B.equals(c);
C.s==t;
D.t==c;