#include <stdio.h>
int main() {
// File read and display
FILE *file;
char buffer[100];
file = fopen("display.txt", "r");
if (file != NULL) {
while (fgets(buffer, sizeof(buffer), file) != NULL) {
printf("%s", buffer);
}
fclose(file);
} else {
printf("Unable to open the file.\n");
}
return 0;
}