write a program in java to input a character and reverse its case.
Answers
Answered by
2
Answer:
Program to reverse the case of input character getchar() is similar to scanf() . islower() is system defined function under ctype. h header file to check if the character is in lowercase or not. toupper() converts the input parameter into equivalent uppercase char.
Similar questions