Mega Code Archive

 
Categories / C Tutorial / Operator
 

A special feature of the and

#include <stdio.h> int main(){    int x, y = 6;    x = y >> 1;       printf("%d",x);    x = y/2;       printf("%d",x); }