C++ Program to print alphabets in order [DEVCPP/ GCC] Shikha Rajput LOOPING Shikha Rajput //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; } Author : Shikha Rajput Share this Google Facebook Twitter More Digg Linkedin Stumbleupon Delicious Tumblr BufferApp Pocket Evernote Related Posts C++ Program to check whether a number is Armstrong number or not [DEVCPP/GCC] ARMSTRONG NUMBER A number of m digits is said to be an Armstrong number, if the sum ofC++ Program to check whether a number is palindrome or not [DEVCPP/GCC] PALINDROME NUMBER A number is called palindrome if it remains same after reversing itsC++ Program to check whether a number is perfect number or not [DEVCPP/GCC] PERFECT NUMBER A positive number is said to be perfect number if it is equal to the suC++ Program to find the number of trailing zeros in the factorial of a number [DEVCPP/GCC] We intend to find the number of trailing zeros in the factorial of a number. For exampl