#include<stdio.h>
int main()
{
int i=65;
do{
printf(“%c”,i);
i++;
}while(i<=90);
return 0;
}

Posted on by