If you look at the
manual for fgets function you will see that it requires 3 arguments:
char *fgets(char *s, int size, FILE *stream);
The first parameter is where the typed name will go (the jerk variable). The second one says how many characters it can read. Here you must use the size of jerk variable as a maximum (you can use the keyword sizeof() to let the compiler determine the maximum size). The last parameter must indicate from where you want to read the data. If you want to read from the keyboard, you must use
stdin (it is the standard input channel).
fgets(jerk, sizeof(jerk), stdin);