#include<stdio.h>
#include<conio.h>
void main()
{
clrscr();
char ch,ch1,ch2;
printf("Enter any character ::");
scanf(“%c”,&ch)
cout<<"Next two character of
"<<ch<<" is ";
ch1=ch+1;
ch2=ch+2;
printf(“%c and %c”,ch1,ch2);
getch();
}