Write the C++ statement that declare an object e1 of type testClass, and initializes the instance variables of e1 to 10 and 65.5 respectively.
#include <iostream>
using namespace std;
class TestClass{
int i;
float f;
public:
TestClass(int _i, float _f):i(_i),f(_f){}
};
int main(){
TestClass e1(10,65.5);
return 0;
}