When using cs50 library, get_string
function doesn't work properly.
uppercase.c:6:19: error: too few arguments to function 'get_string'
string name = get_string("hey? ");
^~~~~~~~~~
In file included from uppercase.c:2:0:
c:\mingw\include\cs50.c:78:8: note: declared here
string get_string(va_list *args, const char *format, ...)
^~~~~~~~~~
How can I make this work?