Exercise 1-7 Write a program to print the value of EOF Process No real process for this one, just an interesting exercise I found that the value EOF is actually stored in stdio.h Final Code #include <stdio.h> int main() { printf("EOF int value: %d", EOF); } Output Back to Main