String C

#include 
#include 
int main ()
{
  char str[256];
  printf ("Enter a sentence: ");
  gets (str);
  printf ( "%s is %u characters long\n", str, strlen( str ) );
  return 0;
}