In an "Old C" code, I have:

int Num, reg_id;

Num= (((reg_id/10) % 10) << 4) + (reg_id % 10);

Could you please tell me what "<<" means? Thanks.