Advertisement
Guest User

a + 1

a guest
Oct 21st, 2019
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.15 KB | None | 0 0
  1. #include <iomanip>
  2. #include <math.h>
  3. #include <iostream>
  4. using namespace std;
  5.  
  6. int main()
  7. {
  8. char a = 'A';
  9. char b = a + 1;
  10.  
  11. cout << b << endl;
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement