The C library function char *gets(char *str) reads a line from stdin and stores it into the string pointed to by str.It stops when either the newline character is read or when the end-of-file is reached, whichever comes first.
Syntax:char *gets(char *str)
Example:#include
int main()
{
char str[50];
printf("Enter a string : ");
gets(str);
printf("You entered: %s", str);
return(0);
}
Let us compile and run the above program, this will produce the following result:
Enter a string : technicia.in
You entered: technicia.in
License.
All information of this service is derived from the free sources and is provided solely in the form of quotations.
This service provides information and interfaces solely for the familiarization (not ownership) and under the "as is" condition.
Copyright 2016 © ELTASK.COM. All rights reserved.
Site is optimized for mobile devices.
Downloads: 694 / 159178513. Delta: 0.00266 с