Code Snippets C

#include
int main(void)
{
char str[100];
printf("Enter letters and spaces\n");
scanf("%[a-zA-Z ]", str);
printf(str);
return 0;
}