Please help how to fix this code?
here's my code
#include#includeint checkIfFileExists(const char *filename);int main(void){char a[100];printf("Enter File Name:\n");scanf("%s",a);if(checkIfFileExists(a)){printf("The file has been opened Successfully.\n") ;}else{printf("The file cant be open. File does not exists.\n" ) ;}}int checkIfFileExists(const char* filename){struct stat buffer;int exist = stat(filename,&buffer);if(exist == 0)return 1;elsereturn 0;}OUTPUTWrite C statements which tests to see if file has opened the data file successfully. If not, print an error message and exit the program.NOTE:Your source code must display any of the given sample output below.It means your source code should be flexible enough to meet any of the given sample output.Your source code output must be identical to any of the given sample output.It means you have to strictly follow what are the displayed text, labels, casing of characters in the sample output.Strictly follow the naming of file.Sample OUTPUT1:Enter File Name: file1.txtThe file can’t be open. File does not exists.Sample OUTPUT2:Enter File Name: file2.txtThe file has been opened successfully.Extracted text: #include 2 #include LAST RUN on 3/28/2021, 5:03:28 AM 3 Check 1 failed 4 int checkIffileExists(const char *filename); Output: Enter File Name: int main(void) { The file cant be open. File does not exists. char a[100]; printf("Enter File Name:\n"); scanf ("%s",a); if(checkIfFileExists(a)) { printf("The file has been opened Successfully.\n") ; } 8 Expected: 9. Enter File Name: 10 11 The file can’t be open. File does not exists. 12 Check 2 passed 13 14 15 else Show diff { printf("The file cant be open. File does not exists.\n" ) ; } 16 v 17 18 19 20 } 21 int checkIfFileExists(const char* filename){ struct stat buffer; int exist = stat(filename, &buffer); if(exist 22 v 23 24 25 == 0) 26 return 1; 27 else 28 return 0; 29 } 29% (9:16) AR
int checkIfFileExists(const char *filename);
int main(void){char a[100];printf("Enter File Name:\n");scanf("%s",a);if(checkIfFileExists(a)){printf("The file has been opened Successfully.\n") ;}else{printf("The file cant be open. File does not exists.\n" ) ;}
}
int checkIfFileExists(const char* filename){struct stat buffer;int exist = stat(filename,&buffer);if(exist == 0)return 1;elsereturn 0;}
OUTPUT
Write C statements which tests to see if file has opened the data file successfully. If not, print an error message and exit the program.
Already registered? Login
Not Account? Sign up
Enter your email address to reset your password
Back to Login? Click here