Category Archives: Coding

All kinds of Programming.

C Program to print permutations of a string

By | July 31, 2020

Permutations Permutations is the set of all different unique arrangements of the letters of the string. So for the string “ABC” there are 6 permutations – ABC, ACB, BAC, BCA, CAB, CBA. The permutations can also be taken on a smaller length. For example if we want to get permutations of ABC over only 2… Read More »