C++ Program to print alphabets in order [DEVCPP/ GCC]


//Program to print alphabets in order.

#include <iostream>

using namespace std;

int main(int argc,char** argv)
{
char c;

for(c='A';c<='Z';c++)
{
cout<<c<<" ";
}

return 0; 
}


Share this

Related Posts

FIND US ON FACEBOOK!