Q. Find the output of below program?
Code:
#include<iostream>
using namespace std;
int main()
{
cout<<-1-1-1;
return 0;
}
β
Correct Answer: (A)
-3
#include<iostream>
using namespace std;
int main()
{
cout<<-1-1-1;
return 0;
}
You must be Logged in to update hint/solution