Skip to content

Learn2Done

    • HOME
    • HTML
    • CSS
    • C
    • C++
    • C#
    • JAVA
    • SQL
    • AWS
    • INTERVIEW QUESTIONS
      • SQL INTERVIEW QUESTONS
    • PROGRAMS
      • Current Page Parent C PROGRAMS
      • C++ PROGRAMS
      • JAVA PROGRAMS
    • Data Science
    • Business Management
    • DevOps
    • Docker
    • Git

    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
    • Next Program in C to check whether the given integer is positive or negative
    • Previous Program in C to add two numbers Copy

    Recent Posts

    • Git Reset to Specific Commit
    • Git Revert Commit & Local
    • Git Revert Commit
    • Git Remove Remote Repo
    • Git List Remote Repo
    • Git Reset to Specific Commit

    • Git Revert Commit & Local

    • Git Revert Commit

    • Git Remove Remote Repo

    Learn2Done © 2023 with ❤ by AlexTech Software Solutions