Du kan bruge isalpha() fra ctype.h, til at checke hver enkelt karakter til strengen, se f.ex:
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/vccore98/html/_crt_isdigit.2c_.iswdigit.aspDu læser strengen med fgets()
#include <stdio.h>
#include <ctype.h>
#include <string.h>
....
char Buffer[1024], *s;
fgets(Buffer, sizeof(Buffer), stdin);
/* Fjern \\n i enden af strengen */
if((s = strchr(Buffer, '\\n')) != NULL)
*s = 0;
for(s = Buffer; *s; s++)
if(!isalpha(*s))
printf("No a letter\\n");