Program in C to print English Alphabets #include <stdio.h> int main() { for (char c= 'A'; c <= 'Z'; ++c) printf("%c ", c); return 0; } import java.util.*; public class Learner { public static void main(String[] args) { for(char c='A';c<='Z';c++) System.out.print(c+" "); } } OUTPUT A B C D E F G H I J K L M N O P Q R S T U V W X Y Z October 23, 2022 by Learn2Done C PROGRAMS