Revision history of "C: bsearch"

From AdonaiMedrado.Pro.Br
Jump to: navigation, search

Diff selection: Mark the radio boxes of the revisions to compare and hit enter or the button at the bottom.
Legend: (cur) = difference with latest revision, (prev) = difference with preceding revision, m = minor edit.

  • (cur | prev) 02:00, 17 April 2009Adonaimedrado (Talk | contribs). . (464 bytes) (+464). . (New page: <code lang="c"> #include <stdio.h> #include <stdlib.h> #define TAMANHO_VETOR 10 int comparar(const void *a, const void *b) { return *(int *)a-*(int *)b; } int main(void) { int i, v[TAM...)