#include <iostream> using namespace std; int main () { char ch; for (ch ='A'; ch <='Z'; ch++) { cout<<ch<<" , "; } return 0; } OUTPUT
No comments