#include <stdio.h>
#include <string.h>
int
main (void)
{
char sentence[200];
FILE *input;/* file is opened */
input = fopen("phrase.txt", "r");
/* the string is read from the file */
fgets (sentence, sizeof(sentence), input);
/* sentence is echoed on the screen *//* \" to display a " (double quotes) */
printf ("The sentence is:\n\"%s\"\n\n\n", sentence);
/* file is closed */
fclose (input);
return (0);
}