Answered step by step
Verified Expert Solution
Link Copied!

Question

00
1 Approved Answer

/ / used to read each charcter char * freads ( char * str , int n , FILE * stream ) { if (

// used to read each charcter
char *freads(char *str, int n, FILE *stream){
if (n <=0||!str ||!stream){
return NULL; // Handle edge cases
}
int i =0;
int ch;
int newline_found =0;
while (i < n -1){
ch = fgetc(stream);
if (ch == EOF){
if (i ==0){
return NULL; // No characters read before EOF
}
break;
}
str[i++]=(char)ch;
if (ch =='
'){
newline_found =1;
break;
}
}
// Handle potential line overflow
if (!newline_found && ch == EOF){
str[i]='\0'; // Null-terminate even if overflow occurred
} else {
str[i]='\0';
}
return str;
} I need this function to not use fgets but still work

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access with AI-Powered Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Students also viewed these Databases questions