Question

True Fale QUESTION 45 The cormect C statement o close an input or output file is closef QUESTION 46 print data to the computer screen. read in data from a file read input from the keyboard wrile data to a file. QUESTION 47 I. To read data from an input file in C, you would use: scan canff ficanf QUESTION 48 I. What is the C statement required to send output to a data file? fprint printf print writef QUESTION 49 When a file nointer is declared. it is eood practice to set its value to NULL in arder to avoid undefined behavior True Fahe False QUESTION 50 I. To open a file in C, it is necessary to know the file pach and mode in which you want to open the file. True False
0 0
Add a comment Improve this question Transcribed image text
Answer #1

Hi,Let me know if you need more information:-

=============================================

45. We use fclose() function to close. NOT [ closef ]
main() {
   FILE *fp;
   fp = fopen("tmp.txt", "w+");
   fclose(fp);
}

============================

46. fscanf used to read input from a stream

Syntax:- int fscanf(FILE *stream, const char *format, ...)

Example:

int main()
{
   char str1[10];
   FILE * fp;

   fp = fopen ("file.txt", "w+");//File content: abc

   fscanf(fp, "%s", str1);//reads from file stream to str1 as string

   printf("Read String |%s|\n", str1 );

   fclose(fp);
}

=================================================

47.fscanf used to read input from a stream

Syntax:- int fscanf(FILE *stream, const char *format, ...)

Example:

int main()
{
   char str1[10];
   FILE * fp;

   fp = fopen ("tmp.txt", "w+");//File content: abc

   fscanf(fp, "%s", str1);//reads from file stream to str1 as string

   printf("Read String |%s|\n", str1 );

   fclose(fp);
}

==============================================

48.We use fprintf .

printff - not exist;printf --> stdout;writef not exst but fwrite exist.

Syntax:- int fprintf(FILE *stream, const char *format, ...)

Example:

int main()
{
   FILE * fp;

   fp = fopen ("tmp.txt", "w+");
   fprintf(fp, "%s %s %s %d", "We", "are", "in", 2017);

   fclose(fp);

   return(0);
}

===============================================

49.TRUE

because it may cause some issues while exexcution of program.if it is not pointed to NULL.

=================================

50:TRUE

Syntax of fopen will be like below:-

=========================

FILE * fopen ( const char * filename, const char * mode ); ///so you must mention the mode and file name.

=================================================

Thanks

Add a comment
Know the answer?
Add Answer to:
The correct C statement to close an input or output file is closef. True False In...
Your Answer:

Post as a guest

Your Name:

What's your source?

Earn Coins

Coins can be redeemed for fabulous gifts.

Not the answer you're looking for? Ask your own homework help question. Our experts will answer your question WITHIN MINUTES for Free.
Similar Homework Help Questions
  • C Programming 6 1 point Which function(s) can be used to open a file? fread fopen...

    C Programming 6 1 point Which function(s) can be used to open a file? fread fopen fscanf fstream file.open fopens 7 1 point Which function(s), is/are used to write text to a file? fprintf printf write fseek fwrite 8 1 point Which preprocessor directive is used to make a macro? #define #ifdef #include #macro #directive 1 point You cannot write the field values of a structure variable to a file. True False 10 1 point You can use the standard...

  • //Done in C please! //Any help appreciated! Write two programs to write and read from file...

    //Done in C please! //Any help appreciated! Write two programs to write and read from file the age and first and last names of people. The programs should work as follows: 1. The first program reads strings containing first and last names and saves them in a text file (this should be done with the fprintf function). The program should take the name of the file as a command line argument. The loop ends when the user enters 0, the...

  • C Programming 12 1 point We can write a large amount text data to a file...

    C Programming 12 1 point We can write a large amount text data to a file without punctuation and will be able to make sense of that data when looking at the file with notepad. True False 13 1 point a When calling the function to open a file in read mode can cause the contents of the file to be erased. True False 14 1 point Writing a struct to a binary file is similar to writing an integer...

  • Use C++ Read numbers from a file and find the sum of numbers. Perform the following...

    Use C++ Read numbers from a file and find the sum of numbers. Perform the following operations Read the console input and create a file.txt. $ in the console input is considered as an end of content for a file. Close the file after creation. Open the file in a read mode and read the numbers from a file and print the sum of all numbers. Input 77 124 2333 $          Where $ indicate an end of console input...

  • Use two files for this lab: your C program file, and a separate text file containing...

    Use two files for this lab: your C program file, and a separate text file containing the integer data values to process. Use a while loop to read one data value each time until all values in the file have been read, and you should design your program so that your while loop can handle a file of any size. You may assume that there are no more than 50 data values in the file. Save each value read from...

  • A. File I/O using C library functions File I/O in C is achieved using a file...

    A. File I/O using C library functions File I/O in C is achieved using a file pointer to access or modify files. Processing files in C is a four-step process: o Declare a file pointer. o Open the desired file using the pointer. o Read from or write to the file and finally, o Close the file. FILE is a structure defined in <stdio.h>. Files can be opened using the fopen() function. This function takes two arguments, the filename and...

  • Write a C++ program that will input data from a Comma-separated values (.csv) file and output...

    Write a C++ program that will input data from a Comma-separated values (.csv) file and output some information about it. This program uses a csv file from Yahoo Finance (.csv) filename : SBUX.csv 1. Output the name of the ticker to the console screen (without the “.csv”) 2. Output the start date and end date that was found in the file 3. Output how many trading day(s) existed in the file 4. Prompt the use to input a number of...

  • In Unix/Linux, input and output are treated as files and referenced by the operating system using file descriptors. When you open a shell session, for example, three file descriptors are in use: 0 st...

    In Unix/Linux, input and output are treated as files and referenced by the operating system using file descriptors. When you open a shell session, for example, three file descriptors are in use: 0 standard input (stdin) 1 standard output (stdout) 2 standard error (stderr) By default, the command interpreter (shell) reads keyboard input from file descriptor 0 (stdin) and writes output to file descriptor 1 (stdout), which appears on the screen. As you explored in Lab 2, input/output can be...

  • How would I change the following C code to implement the following functions: CODE: #include <stdio.h>...

    How would I change the following C code to implement the following functions: CODE: #include <stdio.h> #include <stdlib.h> int main(int argc, char * argv[]) { if (argc != 2) printf("Invalid input!\n"); else { FILE * f = fopen (argv[1], "r"); if (f != NULL) { printf("File opened successfully.\n"); char line[256]; while (fgets(line, sizeof(line), f)) { printf("%s", line); } fclose(f); } else { printf("File cannot be opened!"); } } return 0; } QUESTION: Add a function that uses fscanf like this:...

  • Need to check if File is successfully opened? C++ It works when I input the right...

    Need to check if File is successfully opened? C++ It works when I input the right txt file. But, it keeps stating, File successfully open." even I put in a non-existing file. Here are the specifications: Develop a functional flowchart and then write a C++ program to solve the following problem. Create a text file named first.txt and write your first name in the file. You will be reading the name of the file from the keyboard as a string,...

ADVERTISEMENT
Free Homework Help App
Download From Google Play
Scan Your Homework
to Get Instant Free Answers
Need Online Homework Help?
Ask a Question
Get Answers For Free
Most questions answered within 3 hours.
ADVERTISEMENT
ADVERTISEMENT
ADVERTISEMENT