Loading a File in C++: Tips & Techniques

  • Context: C/C++ 
  • Thread starter Thread starter Spectre32
  • Start date Start date
  • Tags Tags
    C++ File
Click For Summary

Discussion Overview

The discussion revolves around loading a file in C, focusing on the implementation of file I/O functions and debugging issues encountered by the original poster. Participants explore various coding techniques and provide suggestions to resolve the problems faced in reading data from a file.

Discussion Character

  • Technical explanation
  • Debugging assistance
  • Exploratory

Main Points Raised

  • The original poster shares their code for reading a file and expresses confusion about why the program hangs during execution.
  • Some participants suggest checking if the correct filename is being entered and whether the file exists in the expected directory.
  • One participant proposes an alternative C++ approach to file I/O, but the original poster clarifies that they must use C as per their professor's instructions.
  • Another participant points out that the original code does not check for EOF when reading data, suggesting that this might be a source of the issue.
  • There is a discussion about the behavior of the `return` statement in the context of the function and its implications for subsequent code execution.
  • The original poster mentions that debugging statements indicate the program is not reaching certain points, raising questions about the flow of execution.
  • Eventually, the original poster notes that the program started working after further debugging, indicating some resolution but leaving the exact cause of the initial issue unclear.

Areas of Agreement / Disagreement

Participants generally agree on the need for proper file handling and debugging techniques, but there are differing views on the specific causes of the original poster's issues, and the discussion remains somewhat unresolved regarding the exact nature of the problem.

Contextual Notes

There are unresolved questions about the handling of EOF in the file reading loop and the implications of returning a pointer from the function. The original poster's code may depend on specific file formats and conditions that have not been fully clarified.

Spectre32
Messages
136
Reaction score
0
Loading a File in C

Ok here is my code:

Code:
FILE  *fReadOpen( void )
/*
    purpose: open file for reading
    goal state: fReadOpen returns pointer to file
*/
{ /* begin fReadOp */
  /* data object declarations */
    char  FileName[80];  /* input file name */
    FILE  *pInFile;  /* file pointer */
    int  NoSuchFile;  /* logical check for FileName existence */

  /* algorithm */
	 printf( "\nPlease enter the file name to open for reading.\n ==> " );
	 do
		{ /* get FileName */
			 fflush( stdin );
			 scanf( "%[^\n]", FileName );
			 fflush( stdin );
		  /* check for existence */
			 NoSuchFile = ( (pInFile = fopen( FileName, "r" ) ) == NULL );
		  /* print message if file not found */
			 if  ( NoSuchFile )
				{ /* begin if NoSuchFile */
					 printf( "\n%s not found."
								"\nPlease input valid file name.\n ==> ", FileName );
				} /* end if NoSuchFile */
		}
	 while  ( NoSuchFile );
		
	 return( pInFile );

} /* end fReadOpen */

//********************************************************************
void get_data( double input_val[], int *parray_int)
/*
    purpose: continue on with file opening process
    goal state: return an array with via the point array_int
*/
{    // begin get_data
	// variable dictionary
	double acquire;       // being read by fscanf
	double value = 0;     // "value" for the fscanf statement
	FILE   *pInfile;       //  file from above function
	
	// algorithm 
		// open file for reading
			pInfile = fReadOpen();

		// loop for reading values 
			
			*parray_int = 0;
			do
			{ 
				acquire = fscanf(pInfile,"%f", &value);
				if (acquire == 1)
				{
					input_val[*parray_int] = value;
					*parray_int = *parray_int + 1;
				}
			} while (acquire == 1);

			// close file
			fclose( pInfile );

}   // end get_data


Yeah I know its on the large size but I'm kinda confused. My professor gave us that whole File loading thing,a nd i created a data file from notepad. When i run to the program It just sits there and does nothing. So i started to debug and added printf's in those lines. the last line that the printf worked on was the one prior to the return statement, now perhpas my data format is incorrect, but I'm pretty sure I'm straight with that. Does anyone have any Ideas?
 
Last edited:
Technology news on Phys.org
Where's main()?
 
it's up a little bit.. i only posted those two functions... here is the rest: to that point

Code:
main()
{ // begin main
  // variable declarations
	 double input_val[N];       // input values
	 int array_int;            // number of input values
	 int ave;				  // average
	 int median;			 // median
	 int variance;			// Valance
	 int std_dev;		   // Standard Deviation

  // algorithm
		displayheader();
		get_data( input_val, &array_int);
		sort_data(input_val, array_int );
		calculations( input_val, array_int, &ave , &median, &variance, &std_dev);
		display(input_val, array_int, ave , median, variance, std_dev);
  // display end of program message
	printf("\n\n***** End of program\n***** ");

	return (0);

} // end main

//********************************************************************
void  displayheader( void )

I edited out my header file for securit reasons... o:)
 
Right now your doing file i/o the C way. If your looking to do it the C++ way you'll want to something like this:

Code:
#include <iostream>
#include <fstream>

using namespace std ;

int main( int argc , char **argv) {

int field1, field2, field3 ;

ifstream infile("file.in") ;

while( !infile.eof() ) {
   infile >> field1 >> field2 >> field3 ;
   cout << field1 << field2 << field3 << endl ;
}

return 0;

}
 
Well it needs to be C then, sorry for the miss leading title. This is what my professor wants us to use.
 
Did you enter a proper filename for the input file which should be in the current directory of the executable file?
 
Something like this should work:

Code:
#include <stdio.h>
#include <stdlib.h>

int main( int argc , char **argv ) {

FILE *infile ;

infile = fopen( "testin" , "r" ) ;

int field1, field2, field3 ;

if( infile == NULL ) {
        printf("Error Reading File\n") ;
        exit(0) ;
}

while( fscanf( infile , "%i %i %i\n" , &field1, &field2, &field3 ) != EOF ) {
        printf( "Field1: %i\nField2: %i\nField3: %i\n\n" , field1, field2, field3) ;
}

fclose( infile ) ;

return 0 ;

}
 
Last edited:
Yeha I'm pretty sure cause i typed in differt ones and it was very quick to find out it was not there. When i type din the proper extentions it just sat there and didn't do anything. Also I just took your code and compiled it( with a few minor changes), and it worked well, but it going to be hard to interigrate it into my current code. Also liek everyone else got it to work and I'm pretyt sure there are not this many problems.

I'm just kinda fustrated, i can't use this code.
 
Last edited:
The thing that is bugging me is the acquire variable. Your setting its value through fscanf, but you never check for EOF. Put some printf statements inside of the do while loop and see what happens.
 
  • #10
I did... and they all displayed. I did that before I posted. Even As i said the only one that didn't display was the one after the Return xxxxx...
 
  • #11
What do you mean by "the one after the Return xxxxx..."?
 
  • #12
Code:
  /* algorithm */
	 printf( "\nPlease enter the file name to open for reading.\n ==> " );
	 do
		{ /* get FileName */
			 fflush( stdin );
			 scanf( "%[^\n]", FileName );
			 printf( "crap2");
			 fflush( stdin );
		  /* check for existence */
			 NoSuchFile = ( (pInFile = fopen( FileName, "r" ) ) == NULL );
			 printf( "crap3");
		  /* print message if file not found */
			 if  ( NoSuchFile )
				{ /* begin if NoSuchFile */
					 printf( "\n%s not found.");
				    printf( "crap4");
					printf( "\nPlease input valid file name.\n ==> ", FileName );
				} /* end if NoSuchFile */
		}
	 while  ( NoSuchFile );
	 printf( "crap5");
		
	 return( pInFile );

} /* end fReadOpen */

And this is what it displayed:

Please enter int he file for reading
===> data.txt
crap2crap3crap5


Sooo... i guess ... well I don't know what this means. Out side of crap4 is nothign majro cause the file was indeed valid... Sooo again I'm back to square one.
 
Last edited:
  • #13
after the return ( pInFile) i had a printf("whatever"); and it didn't get displayed.
 
  • #14
After you return a value the function exits.

Is the pointer being returned correctly?
 
  • #15
Well i assume not, because I had a print statement after the return and nothing happened. the pointer is used in the next function that I had posted up top. I'm pretty sure it's pasted correctly.
 
Last edited:
  • #16
Hmmmm I just put a prinf statement in the next function below the whole "file getting one" and when i ran it it displayed the print F on the same line as the printf for the entering in the file. Now I'm slightly confused.

EDIT It just started working soo i got to debug some more, thanks for the help :)
 
Last edited:

Similar threads

  • · Replies 6 ·
Replies
6
Views
13K
  • · Replies 4 ·
Replies
4
Views
1K
  • · Replies 2 ·
Replies
2
Views
3K
  • · Replies 10 ·
Replies
10
Views
6K
  • · Replies 13 ·
Replies
13
Views
2K
  • · Replies 75 ·
3
Replies
75
Views
7K
  • · Replies 4 ·
Replies
4
Views
9K
Replies
4
Views
3K
  • · Replies 10 ·
Replies
10
Views
11K
  • · Replies 2 ·
Replies
2
Views
2K