0 votes
1
a << 1 is equivalent tomultiplying a by 2,dividing a by 2,adding 2 to anone
0 votes
2
0 votes
3
#include<stdio.h>main(){ int j=0; int i; for( i=0;i<100;i++) { j=j++; } printf("%d",j);}why o/p is zero??