(New page: '''print_file function''': Opens a file and prints it line by line ----------------------------------------------- int print_file(char * filename); int main(int argc, char * argv[]...)
 
Line 1: Line 1:
 
[['''print_file function''']]:  Opens a file and prints it line by line
 
[['''print_file function''']]:  Opens a file and prints it line by line
 +
(**the format is not at basic coding feature due to the "Rhea" text editor)
  
 
-----------------------------------------------
 
-----------------------------------------------

Revision as of 17:39, 5 May 2011

'''print_file function''': Opens a file and prints it line by line (**the format is not at basic coding feature due to the "Rhea" text editor)


int print_file(char * filename);

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

if(argc < 2) { printf("Need File\n"); return -1; }

char * filename = argv[1];

return print_file(filename); }

int print_file(char * filename) { FILE *f; f = fopen(filename, "r");

if(f == NULL) return -1;

const int BUFFER_SIZE = 100; char buffer[BUFFER_SIZE];

while(fgets(buffer, BUFFER_SIZE,f) != 0 ) { printf("%s", buffer); }

fclose(f); return 0 ; }

Alumni Liaison

Abstract algebra continues the conceptual developments of linear algebra, on an even grander scale.

Dr. Paul Garrett