C Exercises: Print all the alphabets
C Pointer : Exercise-21 with Solution
Write a program in C to print all the alphabets using pointer.
Pictorial Presentation:

Sample Solution:
C Code:
#include <stdio.h>
int main()
{
char alph[27];
int x;
char *ptr;
printf("\n\n Pointer : Print all the alphabets:\n");
printf("----------------------------------------\n");
ptr = alph;
for(x=0;x<26;x++)
{
*ptr=x+'A';
ptr++;
}
ptr = alph;
printf(" The Alphabets are : \n");
for(x=0;x<26;x++)
{
printf(" %c ", *ptr);
ptr++;
}
printf("\n\n");
return(0);
}
Sample Output:
Pointer : Print all the alphabates: ---------------------------------------- The Alphabates are : 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
Flowchart:

C Programming Code Editor:
Have another way to solve this solution? Contribute your code (and comments) through Disqus.
Previous: Write a program in C to show a pointer to an array which contents are pointer to structure.
Next: Write a program in C to print a string in reverse using a pointer.
What is the difficulty level of this exercise?
Test your Programming skills with w3resource's quiz.
C Programming: Tips of the Day
How to format strings using printf() to get equal length in the output?
You can specify a width on string fields, e.g.
printf("%-20s", "initialization...");
And then whatever's printed with that field will be blank-padded to the width you indicate.
The - left-justifies your text in that field.
Ref : https://bit.ly/34DMOc3
- Exercises: Weekly Top 12 Most Popular Topics
- Pandas DataFrame: Exercises, Practice, Solution
- Conversion Tools
- JavaScript: HTML Form Validation
- SQL Exercises, Practice, Solution - SUBQUERIES
- C Programming Exercises, Practice, Solution : For Loop
- Python Exercises, Practice, Solution
- Python Data Type: List - Exercises, Practice, Solution
- C++ Basic: Exercises, Practice, Solution
- SQL Exercises, Practice, Solution - exercises on Employee Database
- SQL Exercises, Practice, Solution - exercises on Movie Database
- SQL Exercises, Practice, Solution - exercises on Soccer Database
- C Programming Exercises, Practice, Solution : Recursion