What will be the output of this code?
#includeiostream
using namespace std;
class Print
{
public:
void operator()(int a){
coutaendl;
}
};
int main()
{
Print print;
print(8);
return 0;
}

Posted on by