Produce 2 power n series using bitwise operator bitwise operator I am printing 2n series up to 210 int main(){int i;for(i=0;i<10;i++)printf("%d\n",1<<i);return 0; }This will be the output of the above code1248163264128256512 Share this Share on FacebookTweet on TwitterPlus on Google+ Related PostsAddition of numbers without arithmetic operatorLogical Operator and Bitwise Operator3941Left shift - Right ShiftBit counting