Hello, i try to make tihis code just for more understand how to send two datatype in dicleration statement, but it does not run it says "no overloaded fun take 2 parameters" how!!
oh(T num11,S num22){ // Note: Space betwee S and num22
num1=num11; // Note: assignment to the member and not the parameter
num2=num22; // Note: assignment to the member and not the parameter
}
1 2 3
T add(){
return num1+num2; // Note: num1 not nu1
}