Home
>
C++ Discussion
C++ Code
Mita
13 Aug 01, 17:08
Explain the following code:
void main()
{
int a = 10, b= 20;
long int c;
c = a * long int(b);
cout<<c;
}