Answer to Question #26691 in C++ for Mohammead Zakir Hussain

Question #26691
How can i display A to Z characters using while loop in c++
1
Expert's answer
2013-03-19T12:14:00-0400
#include <iostream>

using namespace std;

int main()
{
char c = 'A'; // define variable c and set it to 'A'
while(c <= 'Z') // while c not equal to 'Z'
{
cout << c << " "; // print c
c++; // increment c
}
}

Need a fast expert's response?

Submit order

and get a quick answer at the best price

for any assignment or question with DETAILED EXPLANATIONS!

Comments

No comments. Be the first!

Leave a comment

LATEST TUTORIALS
APPROVED BY CLIENTS