fork download
  1. #include <fstream>
  2. #include <string>
  3. const int stringSize = 10;
  4. const int numSize = 20;
  5.  
  6. using namespace std;
  7.  
  8. void inputdata(ifstream & inputFile,
  9. string array1[][stringSize],
  10. double array2[][numSize])
  11. {
  12. }
  13.  
  14. int main()
  15. {
  16. ifstream fs;
  17. string ar1[10][stringSize];
  18. double ar2[10][numSize];
  19. inputdata(fs, ar1, ar2);
  20. }
Success #stdin #stdout 0s 3408KB
stdin
Standard input is empty
stdout
Standard output is empty