Get string from console and output it : Console Read String « Console « C / ANSI-C






Get string from console and output it

  
#include <stdio.h>

int main(void)
{
  char str[80];

  printf("Enter a string: ");
  if(gets(str))  /* if not null */
    printf("Here is your string: %s", str);

  return 0;
}


           
       








Related examples in the same category

1.Use fgets to read string from standard input
2. Get a string from stdin: how to use gets
3. Read formatted data from string: how to use sscanf
4.Get string from console and assign it to a char pointer
5.Read string: A simple scanf and printf pair