I'm a beginner to coding and recently came across a simple issue that I cannot find the solution to on stack overflow, nor google.
string m = get_string("Something: ");
I don't know much code so I resulted to google and stackoverflow which both didn't work unfortunately.
There is no way to directly limit the number of characters read by
get_string.Instead, you can use
strlento check the length of the resulting string, i.e.,