write a C program using any loop statement that produces this output 0 1 1 2 2 4 3 8 4 16 5 32 6 64
Answers
Answered by
0
Answer:
for(i=0, j=1 ; i<=6 ; i++, j = j*2)
printf("%d %d ", i, j)
Similar questions