int main(){
char vactype;
printf("Enter vacation type: ");
scanf("%c", &vactype);
toupper('%c',vactype);
printf("You entered %c", vactype);
};
error:
toupper('%c',vactype);
^~~~
continAssment.c:175:5: error: too many arguments to function 'toupper'
toupper('%c',vactype);
^~~~~~~```