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

int main()
{
   FILE * pFile;
   char string [100];

   pFile = fopen ("pippe.txt" , "r");
     fgets (string , 100 , pFile);
	 printf(string); /* stampa la stringa */
     fgets (string , 100 , pFile);
	 printf(string);

	 fclose (pFile);
	 printf("\n");
	 system("pause");
  
  return 0;
}