Why it outputs came into 11 times | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

Why it outputs came into 11 times

#include <stdio.h> int main() { int i=1024; for(;i;i>>=1) printf ("cprograming\n"); return 0; }

21st Oct 2021, 1:58 PM
Ankur Hazarika
1 Answer
+ 1
Read about bitwise shifting
21st Oct 2021, 5:33 PM
A S Raghuvanshi
A S Raghuvanshi - avatar