Console C

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