Computer Science, asked by AnujMalik4537, 1 year ago

Write a program to display the letter from a to z

Answers

Answered by Aadrika2003
0
// to print all alphabets from a to z
class alphabets
{
  void method()
   {
      char c;
        printf ("ALPHABERS from a-z are:\n");
        for (ch = <'z'; ch++)
         {
           printf ("%c\n",ch);
            }
             return 0
          }
Similar questions