Reverse The Case Of Input Character
getchar() is similar to scanf(). islower() is system defined function under ctype.h header file which check if the character is in lowercase or not. toupper() converts the input parameter into equivalent uppercase char. putchar() is similar to printf(). #include<stdio.h> #include<conio.h> #include<ctype.h> // for use system… Read More »Reverse The Case Of Input Character