• Source
    1. #include <stdio.h>
    2.  
    3. int main(void) {
    4. float a = 5.678;
    5. int b;
    6. // this will generate error
    7. b = a << 3;
    8. printf("%f", b);
    9. return 0;
    10. }