Please help how to fix this code? here's my code #include #include int checkIfFileExists(const char *filename); int main(void) { char a[100]; printf("Enter File Name:\n"); scanf("%s",a);...


Please help how to fix this code?


here's my code


#include

#include


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;
else

return 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.



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.txt
The file can’t be open. File does not exists.
















Sample OUTPUT2:
Enter File Name: file2.txt
The file has been opened successfully.

#include<stdio.h><br>2<br>#include<sys/stat.h><br>LAST RUN on 3/28/2021, 5:03:28 AM<br>3<br>Check 1 failed<br>4<br>int checkIffileExists(const char *filename);<br>Output:<br>Enter File Name:<br>int main(void)<br>{<br>The file cant be open. File does not exists.<br>char a[100];<br>printf(

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
Jun 05, 2022
SOLUTION.PDF

Get Answer To This Question

Related Questions & Answers

More Questions »

Submit New Assignment

Copy and Paste Your Assignment Here