I was wondering if someone knows how to allow a user to input both string(char) and integers at the same time where each character of the input is verified. An example of the input would be "05JK1010". I’ve only started studying the C language last week so I only have this figured out
char studentID [20];
printf("Enter your student ID:\n");
        scanf("%s", &studentID );
 
     
     
    