Computer Science, asked by kumkum74, 9 months ago

using switch case statement write a program to generate and print letters from A to Z and their Unicode​solve this question

Answers

Answered by aarthi2002maheswaran
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