If I have a string like a/{b,c,d}/e then I want to be able to produce this output: a/b/e a/c/e a/d/e You get the idea. I need to implement this in C. I have written a brute force kind of code w
!/bi开发者_JAVA百科n/bash echo Enter the num read n for i in { 1..10 } do m=$(( n*i )) echo \"$i * $n\" = $m