#include <iostream> using namespace std; int main() { char ch = 'a'; if (ch >= 'A' && ch <= 'Z') ch = ch + 32; else ch = ch - 32; cout << "Output = " << ch; }
Output:
Need a fast expert's response?
and get a quick answer at the best price
for any assignment or question with DETAILED EXPLANATIONS!
Comments
Leave a comment