2021-11-06 00:54:19 +00:00
|
|
|
#include <stdio.h>
|
|
|
|
|
2021-11-06 01:17:39 +00:00
|
|
|
/* Exercise 1-6 and 1-7 */
|
2021-11-06 00:54:19 +00:00
|
|
|
int main()
|
|
|
|
{
|
|
|
|
int c;
|
|
|
|
|
2021-11-06 01:17:39 +00:00
|
|
|
printf("EOF = %d\n", EOF);
|
|
|
|
|
|
|
|
while (c = getchar() != EOF)
|
|
|
|
printf("c = %d\n", c);
|
2021-11-06 00:54:19 +00:00
|
|
|
}
|