#include <iostream> using namespace std; int main () { int i; for (i=65; i<=90; i++) { cout<<(char)i<<" , "; } return 0; } OUTPUT
No comments