Write a C++ program which accepts a character and display its next character.
Program Code:
#include<iostream>
using namespace std;
int main()
{
char ch;
cout<<"Enter any character of your choice : ";
cin>>ch;
// apply post increment operator for next character
ch++;
// you can apply pre increment operator for next character here
// ++ch;
cout<<"Next character after "<<ch<< " is : "<<ch;
return 0;
}
The program output is tested on www.jdoodle.com
Output:
Enter any character of your choice : i
Next character is : j
Thanks
Mukesh Rajput
Program Code:
#include<iostream>
using namespace std;
int main()
{
char ch;
cout<<"Enter any character of your choice : ";
cin>>ch;
// apply post increment operator for next character
ch++;
// you can apply pre increment operator for next character here
// ++ch;
cout<<"Next character after "<<ch<< " is : "<<ch;
return 0;
}
The program output is tested on www.jdoodle.com
Output:
Enter any character of your choice : i
Next character is : j
Thanks
Mukesh Rajput
Thanks
ReplyDelete