Revision history of "C"

Jump to navigation Jump to 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.

  • curprev 18:24, 28 October 2013Domenique talk contribs 176 bytes +176 Created page with "int palindroma(char *pnt){ int dim=strlen(pnt)-1; int l=dim/2; int k; for(k=0;k<=l;k++) { if(pnt[k]!=pnt[dim]) return 0; else dim--; } return 1; }"