Question 5
What number would be outputted by the following code?
long i,n,m;
i=1073741823;
n=1073747921;
m=i+n;
cout ≪m≪ endl;
Question 5
20 pts
What number would be outputted by the following code?
long i,n,m;
i=1073741823; n=1073747921; m=i+n; cout<<m<<endl;
O Code cannot be compiled
O 1073747921
O -2147477552
O 2147489744
O Abnormal termination will occure
O 1073741823