WAP to print 1 2 4 8 16 32 64 128............
#include<iostream.h>
#include<conio.h>
void main()
{ for(int i=1;;)
{
cout<<i<<"";
if(i==128)
break;
i*=2;
}
getch();
}
#include<conio.h>
void main()
{ for(int i=1;;)
{
cout<<i<<"";
if(i==128)
break;
i*=2;
}
getch();
}
Comments
Post a Comment