Paste #266744 |
pasted on 14.11.2022 21:40
- Edit to this paste
- Raw
- The following pastes replied to this paste: # 276943
- Show paste tree
-
Compare with paste
#
Text paste
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 | #include <stdio.h> int main() { char a[] = "4321"; //array int i, j; int f=24; //factorial char c; //buffer while (f--) { printf("%s\n", a); i=1; while(a[i] > a[i-1]) i++; j=0; while(a[j] < a[i])j++; c=a[j]; a[j]=a[i]; a[i]=c; i--; for (j = 0; j < i; i--, j++) { c = a[i]; a[i] = a[j]; a[j] = c; } } } |