Anything related to C or C++ standard library functions gets (C) or std::gets (C++). These functions are used to read a sequence of characters from an input stream and to write it into a character buffer as a string.
When I try to compile C code that uses the gets() function with GCC, I get this warning: (.text+0x34): …
c fgets buffer-overflow getsI have been told that scanf should not be used when user inputs a string. Instead, go for gets() by …
c scanf getsI understand that an 'implicit declaration' usually means that the function must be placed at the top of the program …
c linux getsI need to get user input when running a .js in a console with spidermonkey like this: $ js myprogram.js …
javascript console spidermonkey getsI tried to input data with gets() function, but whenever program execution get to the the lien with the gets, …
c++ string getsIm trying to use gets() to get a string from the user but the program seems to be passing right …
c string gets