- 1C Hello World Program
- 2C Program to Print Your Own Name
- 3C Program to Print an Integer Entered by the User
- 4C Program to Add Two Numbers
- 5C Program to Multiply Two Floating‑Point Numbers
- 6C Program to Print the ASCII Value of a Character
- 7C Program to Swap Two Numbers
- 8C Program to Calculate Fahrenheit to Celsius
- 9C Program to Find the Size of int, float, double and char
- 10C Program - Add Two Complex Numbers
- 11C Program - Find Simple Interest
- 12C Program - Find Compound Interest
- 13C Program - Area And Perimeter Of Rectangle
- 14C Program - Check Whether a Number is Positive, Negative, or Zero
- 15C Program - Check Whether Number is Even or Odd
- 16C Program - Check Whether a Character is Vowel or Consonant
- 17C Program - Find Largest Number Among Three Numbers
- 18C Program - Calculate Sum of Natural Numbers
- 19C Program - Print Alphabets From A to Z Using Loop
- 20C Program - Make a Simple Calculator
- 21C Program - Generate Multiplication Table
- 22C Program - Reverse a Number
- 23C Program - Check whether the input number is a Neon Number
- 24C Program - Find All Factors of a Natural Number
C Program to Print Alphabets From A to Z - Using a Loop
Print Alphabets From A to Z Using a Loop
#include <stdio.h>
int main() {
// Declare a character variable to iterate through alphabet
char c;
// Loop from 'A' to 'Z'. Each iteration increments the character.
for (c = 'A'; c <= 'Z'; ++c) {
printf("%c ", c); // Print the current letter followed by a space
}
// Print a newline at the end for a clean output
printf("\n");
return 0;
}
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
In C, characters are stored using their ASCII values. The uppercase letters 'A' through 'Z' are consecutive, so you can use a for-loop to iterate from 'A' to 'Z' and print each letter. Once you understand this, you can easily adapt the loop to print lowercase letters or any other range of characters.
⬅ Previous TopicC Program - Calculate Sum of Natural Numbers
Next Topic ⮕C Program - Make a Simple Calculator
Next Topic ⮕C Program - Make a Simple Calculator
Comments
Loading comments...