hi... can anyone tell me how to convert the below pseudocode segment to a C program
this is from quicksort partition algo. also pls tell me how to write true and repeat until in C
thnxx
Code:
[B]while [/B]true [B]do repeat[/B] j-- [B]until[/B] A[j] <= x [B]repeat[/B] i++ [B]until[/B] A[i] >= x
thnxx
Comment