单选题 函数模板:template<class T>
T add(Tx,Ty)returnx+y;
下列对add函数的调用不正确的是( )。
A.add<>(1,2) B.=add<int> (1,2)
C.add(1.0,2) D.add(1.0,2.0)

【正确答案】 C
【答案解析】