Why iostream is in double quotes? Why if we run same code in dev c compiler gives correct output as 3 ; why not here?

#include “iostream”
using namespace std;
int main(int argc, char* argv[])
{
int x,y;
cin>>x>>y;
int num = x^y;
cout<<num ;

return 0;

}

@dhruvtrehan45hey iostream will be in bracket only and this programme will return the xor of two input numbers.

I hope I’ve cleared your doubt. I ask you to please rate your experience here
Your feedback is very important. It helps us improve our platform and hence provide you
the learning experience you deserve.

On the off chance, you still have some questions or not find the answers satisfactory, you may reopen
the doubt.