What will be the output of the following program?
#include<stdio.h> 
#include<ctype.h>
void main( )
{
char alphabet;
printf("Enter any alphabet\n");
alphabet=getchar( );
if(islower(alphabet))
putchar(toupper(alphabet));
else
putchar(tolower(alphabet));
}

Posted on by