The following code should receive a string of characters separated by space and sort them:
#include <stdio.h>
#include <stdlib.h>
int particiona(int *vector,int inicio,int fim){
int i,j,guarda,aux;
i = inicio-1, j = inicio...
asked by
26.03.2016 / 02:18