Answer to Exercise 1-7, page 17
Solution by Richard Heathfield
Write a program to print the value of EOF .
#include <stdio.h>
int main(void)
{
printf("The value of EOF is %d\n\n", EOF);
return 0;
}
'The C Programming Language' 카테고리의 다른 글
Chapter 1 - A Tutorial Introduction 9 (0) | 2009.03.25 |
---|---|
Chapter 1 - A Tutorial Introduction 8 (0) | 2009.03.25 |
Chapter 1 - A Tutorial Introduction 6 (0) | 2009.03.25 |
Chapter 1 - A Tutorial Introduction 5 (0) | 2009.03.25 |
Chapter 1 - A Tutorial Introduction 4 (0) | 2009.03.25 |