Write a program to accept a character from user and process it like this. A) if character is alphabets then print next successive character e.g. a then b, x then y, x then a. B) if it is not alphabets then print that character as is…



#include<stdio.h>
#include<conio.h>
void main()
{
    char ch;
    printf("Enter the character = ");
    scanf("%c",&ch);
    ch=ch+1;
    printf("Successive character is = %c",ch);
getch();
}

OUTPUT :- 
 
Previous Post
Next Post