Write a program to find the product of the following series 2*4 *8*16*32....n terms.
Answers
Answered by
0
Answer:
include<iostream.h>
#include<conio.h>
void main()
{
clrscr();
int i;
for(i=1;i<=128;i*=2)
cout<<i<<” “;
getch();
}
Answered by
9
Answer is in the attachment
please mark as BRAINLIEST
Attachments:
Similar questions