prathimzn
BAN USER
RepAsaDills, HR Executive Trainee at Cerner Corporation
I 'm Asa Dills, My role of the Public Housing Manager (PHM) is complex. the financial viability of the property ...
RepSpent 2001-2006 licensing the elderly in Jacksonville, FL. Spent 2001-2004 consulting about Break Up Spell. Spent two years deploying crickets ...
RepBlakeRileyHomes, Analyst at Aristocrat Gaming
Blake Riley Homes is the leading interior designing and real estate home staging Orange County CA company.Our professional designs ...
Repterricjohnson8547, Animator at 247quickbookshelp
Hello, I am a dancer. I have completed my studies from New York. And today I am a dance teacher ...
Reppfisterruiz, Accountant at 247quickbookshelp
Door-to-door is a canvassing technique that is generally used for sales, marketing, advertising, evangelism or campaigning, in which I walk ...
Repqueznister, Android test engineer at Aspire Systems
I supervise the day-to-day operations of the store. assign duties. Determine staffing requirements, oversee their hiring, and, when needed, dismiss ...
Repliliylinda619, Area Sales Manager at Alliance Global Servies
My name is Sarah Torres and I am a Fitness director in the Independent Planners. I am a very kind ...
RepJohnCrter, Android test engineer at Alfa Chemaical Laboratory
Training Director responsibilities include identifying training needs based on skills gap analysis, developing group and individual learning courses and managing ...
#include<stdio.h>
- prathimzn July 27, 2012int n;
void fun(int *a,int j)
{
int k,i;
if(j==n)
{
for(i=0;i<n;i++)
printf("%d",a[i]);
printf("\n");
return;
}
for(j,k=0;k<=j;k++)
{
a[j]=k+1;
fun(a,j+1);
}
}
int main()
{
scanf("%d",&n);
int a[n],i;
fun(a,0);
return 0;
}