Created
December 6, 2012 07:42
-
-
Save v2e4lisp/4222589 to your computer and use it in GitHub Desktop.
string length is even or not #c
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
main() | |
{ | |
for (;;) { | |
if (getchar() == EOF) return TRUE; | |
if (getchar() == EOF) return FALSE; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment