#include<iostream.h>
#include<conio.h>
#include<stdio.h>
#include<string.h>
char str[30];
int temp[30]= {0};
void print_powerset(int );
void set_po(int , int );
void main()
{
int n;
cout << "Enter String :: ";
gets(str);
n = strlen(str);
set_po(n,0)...