Answers for "shift left c <<="

C
1

left shift operator in c

#include<stdio.h> 
int main() 
{ 
    // a = 5(00000101), b = 9(00001001) 
    unsigned char a = 5, b = 9;  
  
    // The result is 00001010  
    printf("a<<1 = %dn", a<<1); 
    
    // The result is 00010010  
    printf("b<<1 = %dn", b<<1);   
    return 0; 
}
Posted by: Guest on September-18-2020

Code answers related to "C"

Browse Popular Code Answers by Language