Can we declare a function like this in c++:
int operator + (int , int);
Your answers will be appreciated!
Thanks
No we cannot overload integer or float types because overloading means to change the working of existing operators or make them to work with objects int is single member not an object.