Revision history of "C: Uso de fgets e fputs com stdin e stdout"

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) 21:31, 4 June 2009Adonaimedrado (Talk | contribs). . (122 bytes) (+122). . (New page: <code lang="c"> #include <stdio.h> int main(void) { char s[5]; fgets(s,5,stdin); fputs(s,stdout); return 0; } </code>)