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.

Computer Networking: A Top-Down Approach (7th Edition)
7th Edition
ISBN:9780133594140
Author:James Kurose, Keith Ross
Publisher:James Kurose, Keith Ross
Chapter1: Computer Networks And The Internet
Section: Chapter Questions
Problem R1RQ: What is the difference between a host and an end system? List several different types of end...
icon
Related questions
Question

Please help how to fix this code?

here's my code

#include<stdio.h>
#include<sys/stat.h>

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>
2
#include<sys/stat.h>
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
Transcribed Image Text:#include<stdio.h> 2 #include<sys/stat.h> 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
Expert Solution
steps

Step by step

Solved in 2 steps with 6 images

Blurred answer
Recommended textbooks for you
Computer Networking: A Top-Down Approach (7th Edi…
Computer Networking: A Top-Down Approach (7th Edi…
Computer Engineering
ISBN:
9780133594140
Author:
James Kurose, Keith Ross
Publisher:
PEARSON
Computer Organization and Design MIPS Edition, Fi…
Computer Organization and Design MIPS Edition, Fi…
Computer Engineering
ISBN:
9780124077263
Author:
David A. Patterson, John L. Hennessy
Publisher:
Elsevier Science
Network+ Guide to Networks (MindTap Course List)
Network+ Guide to Networks (MindTap Course List)
Computer Engineering
ISBN:
9781337569330
Author:
Jill West, Tamara Dean, Jean Andrews
Publisher:
Cengage Learning
Concepts of Database Management
Concepts of Database Management
Computer Engineering
ISBN:
9781337093422
Author:
Joy L. Starks, Philip J. Pratt, Mary Z. Last
Publisher:
Cengage Learning
Prelude to Programming
Prelude to Programming
Computer Engineering
ISBN:
9780133750423
Author:
VENIT, Stewart
Publisher:
Pearson Education
Sc Business Data Communications and Networking, T…
Sc Business Data Communications and Networking, T…
Computer Engineering
ISBN:
9781119368830
Author:
FITZGERALD
Publisher:
WILEY