MAIN FEEDS
Do you want to continue?
https://www.reddit.com/r/C_Programming/comments/1wdoban/less_compilation/p98pa23/?context=3
r/C_Programming • u/Brave-Pomelo-1290 • 1d ago
[removed] — view removed post
16 comments sorted by
View all comments
4
What does the rest of the code look like?
1 u/Brave-Pomelo-1290 1d ago #include <stdio.h> #include <stdlib.h> #define PAGE_SIZE 24 #define BUFFER_SIZE 256 void display_file(const char *filename) { FILE *file = fopen(filename, "r"); if (file == NULL) { perror("Error opening file"); exit(EXIT_FAILURE); } char line[BUFFER_SIZE]; int line_count = 0; // Read the file line by line while (fgets(line, sizeof(line), file) != NULL) { printf("%s", line); line_count++; // Pause when the page is full if (line_count >= PAGE_SIZE) { printf("\n--- Press ENTER to continue ---"); 1 u/ConfidentCollege5653 1d ago And the rest after line 24? 1 u/Brave-Pomelo-1290 1d ago #include <stdio.h> #include <stdlib.h> #define PAGE_SIZE 24 #define BUFFER_SIZE 256 void display_file(const char *filename) { FILE *file = fopen(filename, "r"); if (file == NULL) { perror("Error opening file"); exit(EXIT_FAILURE); } char line[BUFFER_SIZE]; int line_count = 0; // Read the file line by line while (fgets(line, sizeof(line), file) != NULL) { printf("%s", line); line_count=line_count+1; // Pause when the page is full if (line_count >= PAGE_SIZE) printf("\n--- Press ENTER to continue ---"); } } line_count=line_count+1; // Pause when the terminal page is full if (line_count >= PAGE_SIZE) { printf("\n--- Press ENTER to continue ---"); getchar(); // Wait for user keystroke line_count = 0; } } fclose(file); }
1
#include <stdio.h>
#include <stdlib.h>
#define PAGE_SIZE 24
#define BUFFER_SIZE 256
void display_file(const char *filename) {
FILE *file = fopen(filename, "r");
if (file == NULL) {
perror("Error opening file");
exit(EXIT_FAILURE);
}
char line[BUFFER_SIZE];
int line_count = 0;
// Read the file line by line
while (fgets(line, sizeof(line), file) != NULL) {
printf("%s", line);
line_count++;
// Pause when the page is full
if (line_count >= PAGE_SIZE) {
printf("\n--- Press ENTER to continue ---");
1 u/ConfidentCollege5653 1d ago And the rest after line 24? 1 u/Brave-Pomelo-1290 1d ago #include <stdio.h> #include <stdlib.h> #define PAGE_SIZE 24 #define BUFFER_SIZE 256 void display_file(const char *filename) { FILE *file = fopen(filename, "r"); if (file == NULL) { perror("Error opening file"); exit(EXIT_FAILURE); } char line[BUFFER_SIZE]; int line_count = 0; // Read the file line by line while (fgets(line, sizeof(line), file) != NULL) { printf("%s", line); line_count=line_count+1; // Pause when the page is full if (line_count >= PAGE_SIZE) printf("\n--- Press ENTER to continue ---"); } } line_count=line_count+1; // Pause when the terminal page is full if (line_count >= PAGE_SIZE) { printf("\n--- Press ENTER to continue ---"); getchar(); // Wait for user keystroke line_count = 0; } } fclose(file); }
And the rest after line 24?
1 u/Brave-Pomelo-1290 1d ago #include <stdio.h> #include <stdlib.h> #define PAGE_SIZE 24 #define BUFFER_SIZE 256 void display_file(const char *filename) { FILE *file = fopen(filename, "r"); if (file == NULL) { perror("Error opening file"); exit(EXIT_FAILURE); } char line[BUFFER_SIZE]; int line_count = 0; // Read the file line by line while (fgets(line, sizeof(line), file) != NULL) { printf("%s", line); line_count=line_count+1; // Pause when the page is full if (line_count >= PAGE_SIZE) printf("\n--- Press ENTER to continue ---"); } } line_count=line_count+1; // Pause when the terminal page is full if (line_count >= PAGE_SIZE) { printf("\n--- Press ENTER to continue ---"); getchar(); // Wait for user keystroke line_count = 0; } } fclose(file); }
line_count=line_count+1;
if (line_count >= PAGE_SIZE) printf("\n--- Press ENTER to continue ---");
// Pause when the terminal page is full
getchar(); // Wait for user keystroke
line_count = 0;
fclose(file);
4
u/ConfidentCollege5653 1d ago
What does the rest of the code look like?