void main ( )
{
    int a = 12;
   a = a << 2;
   cout << a ;
}

what that means
a = a << 2; how that works

Bit shift left by 2. (Multiply by 4)

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.