What will be the output of this code?
#includeiostream
using namespace std;
int main()
{
int x = 8;
auto check = []() - bool
{
if(x == 0)
return false;
else
return true;
};
coutcheck()endl;
return 0;
}

Posted on by