单项选择题

有如下函数模板:
template
T cast(Uu)return u;
其功能是将U类型数据转换为T类型数据。已知i为int型变量,下列对模板函数cast的调用中正确的是( )。

A.cast(i);
B.cast<>(i);
C.cast(i);
D.cast(i);