/* cat.c - Print contents of file */

#include <stdio.h>

#define MAXCHAR 1000

int main() 
{
	FILE *fp;
	char str[MAXCHAR];
	char* filename = "TEST.TXT";

	fp = fopen(filename, "r");
	if (fp == NULL)
	{
		printf("Could not open file %s", filename);
		return 1;
	}
	while (fgets(str, MAXCHAR, fp) != NULL)
		printf("%s", str);
	fclose(fp);
	return 0;
}