I am making a program, which prints the numbers entered by the user in ascending order using Bubble Sort. I wanted help to implement this function.
My code:
#include <stdio.h>
#define MAX 10
int main()
{
int vetor[MAX], i,t,a;...
asked by
07.10.2015 / 05:47