Tuesday 5 September 2017

C-Program to Print Alphabets from a-z(small)

PROGRAM :  Print Alphabets from a-z(small) 


#include<stdio.h>

int main()
{
     int i;

//To print  from 'a' to 'z' by ascii values of a-z
      for(i=97;i<=122;i++)
            printf("%c\n",i);
return 0;

}

OUTPUT : 



No comments:

Post a Comment