Just searching in the C Directory section of cprogramming for some good links and I found this one:
C Programs for simple and advanced topics

I think this link should me removed from the cprogramming site because of the bad progrogramming examples.
Code:
#include <stdio.h>
#include <conio.h>
#include <string.h>

main()
{
   char word1[25];
   char word2[25];

   clrscr();

   printf("\n First word : ");
   gets(word1);
   fflush(stdin);
   ... 
   /* und so weiter, and so forth */
   ...
   getch();
}
Maybe there is a MOD who can check all these links and remove the bad ones...