mirror of
https://github.com/krislamo/knrc.git
synced 2024-11-10 00:30:35 +00:00
13 lines
155 B
C
13 lines
155 B
C
#include <stdio.h>
|
|
|
|
/* Exercise 1-6 and 1-7 */
|
|
int main()
|
|
{
|
|
int c;
|
|
|
|
printf("EOF = %d\n", EOF);
|
|
|
|
while (c = getchar() != EOF)
|
|
printf("c = %d\n", c);
|
|
}
|