单项选择题

有如下函数模板的定义:
template<class T>
T func(T x,T y)return x*x+y*y;
在下列对func的调用中不正确的是

A.func(3,5);
B.func<>(3,5);
C.func(3,5.5);
D.func<int>(3,5.5);