Revision history of "Getchar.c"

From Free Knowledge Base- The DUCK Project: information for everyone
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) 22:17, 24 May 2007Admin (Talk | contribs). . (283 bytes) (+283). . (New page: #include <stdio.h> #define EOL 10 #define ESC 27 main() { char c = 'X'; while (c != ESC) { int cnt; cnt++; printf("iteration of test %d", cnt); c = getchar();...)