how to write a function definition to match given function interference, the code does not have to work, it is just for my understanding.    int save_array(const char *filename, const int *a, int n ); //REQUIRES: filename points to the start of a string. // n>0 and element a[0]....a[n-1] exist. // PROMISE: // if the test file with name filename can be successfully opened, // the value of n is printed to the file, followed by the values of  // a[0]....a[n-1], one number per line  // the return value is 0 for success, 1 for failure to open the file, // and 2 if an error is detected closing the file

C++ for Engineers and Scientists
4th Edition
ISBN:9781133187844
Author:Bronson, Gary J.
Publisher:Bronson, Gary J.
Chapter8: I/o Streams And Data Files
Section: Chapter Questions
Problem 8PP: (Data processing) A bank’s customer records are to be stored in a file and read into a set of arrays...
icon
Related questions
Question

 Please use C Programming

 

how to write a function definition to match given function interference, the code does not have to work, it is just for my understanding. 

 

int save_array(const char *filename, const int *a, int n );
//REQUIRES: filename points to the start of a string.
// n>0 and element a[0]....a[n-1] exist.
// PROMISE:
// if the test file with name filename can be successfully opened,
// the value of n is printed to the file, followed by the values of 
// a[0]....a[n-1], one number per line 
// the return value is 0 for success, 1 for failure to open the file,
// and 2 if an error is detected closing the file 

Expert Solution
steps

Step by step

Solved in 2 steps with 5 images

Blurred answer
Knowledge Booster
Functions
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
C++ for Engineers and Scientists
C++ for Engineers and Scientists
Computer Science
ISBN:
9781133187844
Author:
Bronson, Gary J.
Publisher:
Course Technology Ptr