Subsets recursion

https://ide.codingblocks.com/s/39188
question is https://hack.codingblocks.com/contests/c/512/76

Hey Chinmay, the problem is just with the order of subsets in which they are printing.
You can correct that just by traversing over array in reverse order (from nth element to 0th element) in recursive function.
I have just modified this in your code, you can refer this https://ide.codingblocks.com/s/39221