I'm wondering in C is there a way to prompt the user to enter 2 different values, and then store those two values separately, all in one user entry. For example:
Enter your age and blood type : 34 AB
Then we store the two enties separately like
fgets(string,string, 64, 64, stdin);
Clearly THIS won't work, but is there a way possible in C. I'm very new to C (2 days). I know in Java you can use the args[] defined in the main and grab command line entries by index, where each space in the user's input would be a different element in the args array.