using switch case statement write a program to generate and print letters from A to Z and their Unicodesolve this question
Answers
Answered by
3
Answer:
<include.stdio.h>
<include.conio.h>
void main()
{
int n;
printf("the letters from a to z:\n");
scanf("%d",&n);
switch(n)
{
case 1:
printf(" a\n");
break;
case 3:
printf("b\n");
break;
.
.
.
.
.
.
.
case 26:
printf("z\n");
break;
}
}
Explanation:
Similar questions
Social Sciences,
6 months ago
Computer Science,
6 months ago
Math,
1 year ago
Science,
1 year ago
Social Sciences,
1 year ago
Social Sciences,
1 year ago