Table of Contents
This guide covers the function gets ()() in c with practical context and easy-to-follow details. Use it to understand the subject and apply the information confidently.
The function gets () differs from the scanf () function in that the function accepts spaces with spaces.
Declare the Function Gets ()() in C
Below is the declaration for the gets () function in C:
char * gets ( char * str )
Parameters
Str - This is the pointer to the array of char where the string is stored.
Returns the value
This function returns str if successful, and NULL if there is an error or an End-Of-File appears, while no character has been read.
For example
The following C program illustrates the usage of the gets () function in C. You will see that the gets () function accepts strings containing spaces, unlike scanf ():
#include int main () { char str [ 50 ]; printf ( "Nhap mot chuoi: " ); gets ( str ); printf ( "Ban vua nhap chuoi: %s" , str ); return ( 0 ); }
Compile and run the above C program to see the results.
According to Tutorialspoint
Previous article: getchar () function in C
Next lesson: Ham putc () in C
FAQ
What should I check before following these steps?
Confirm device and software compatibility, save important data, and make sure you have the required permissions, files, and account access.
Why might the process not work?
Common causes include outdated software, missing permissions, incompatible hardware, an unstable connection, or completing a step in the wrong order.
Can I undo the changes if necessary?
That depends on the tool or setting. Use built-in restore options when available, keep a backup, and record the original configuration first.
Reader Comments 0
Sign in with email or Google to join the discussion.