Question #26691

How can i display A to Z characters using while loop in c++

Expert's answer

#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
}
}

LATEST TUTORIALS
APPROVED BY CLIENTS