I am trying to execute a simple long multiplication but it is not showing the correct the output. here is the sample code
'''
#include<iostream>
using namespace std;
int main ()
{
long long int c=100000*90000;
cout<<c;
return 0;
}
'''
cout of variable c is: 410065408
I dont know why it is displaying the garbage value instead of 9000000000.