Posts

Showing posts with the label ABC

Capital and small ABC || Print Alphabets

// This is written by "Syed Ali Haider" // Student of Havjery University // Don't remove these line for legal use // Upload on Let's programming by (CEO) // For contact // key_to_programming@yahoo.com # include <iostream> using namespace std; void main () {        cout<< "\t\t\t\t!....ABC....!" <<endl<<endl;        for ( char i= 'A' ; i <= 'Z' ; i++) // loop for capital alphabets              cout<<i<< "   " ;        cout<<endl;        for ( char i= 'a' ; i <= 'z' ; i++) // loop for small alphabets                           cout<<i<< "   " ;     ...