Code Snippets C

#include
int main(void)
{
char str[100];
printf("Enter a string: ");
scanf("%s", str);
printf(str);
return 0;
}