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