void main ( )
{
int a = 12;
a = a << 2;
cout << a ;
}
what that meansa = a << 2;
how that works
Bit shift left by 2. (Multiply by 4)
We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.